astro website template themes source code download
1.0.0
使用 astro 构建快速且现代的网站!
食谱:
阿斯特罗
引导新的
动画化
文档:https://www.hockeycomputindo.com/2022/03/astro-website-template-free-download.html
演示:https://astroboyweb.netlify.app/
主页:https://astroman.vercel.app/
视频:https://www.youtube.com/watch?v=PjAUuI21ko4
什么新的??
启动画面
完整的 Animate 包括
git clone https://github.com/mesinkasir/astroweb.git
? 经验丰富的宇航员?删除这个文件。玩得开心!
特征:
✅ 具有规范 URL 和 OpenGraph 数据的 SEO 友好设置
✅ 完整的 Markdown 支持
✅ RSS 2.0 一代
✅ Sitemap.xml 生成
在 Astro 项目内部,您将看到以下文件夹和文件:
/ ├── public/ │ ├── robots.txt │ └── favicon.ico ├── src/ │ ├── components/ │ │ └── Tour.astro │ └── pages/ │ └── index.astro └── package.json
Astro 在src/pages/
目录中查找.astro
或.md
文件。每个页面都根据其文件名公开为路径。
src/components/
没有什么特别的,但我们喜欢在其中放置任何 Astro/React/Vue/Svelte/Preact 组件。
任何静态资源(例如图像)都可以放置在public/
目录中。
所有命令都从项目的根目录的终端运行:
命令 | 行动 |
---|---|
npm install | 安装依赖项 |
npm run dev | 在localhost:3000 启动本地开发服务器 |
npm run build | 将您的生产站点构建到./dist/ |
npm run preview | 在部署之前在本地预览您的构建 |
请随意查看我们的文档或跳转到我们的 Discord 服务器。