Update project structure

This commit is contained in:
prototypa
2023-01-24 12:20:30 -05:00
committed by GitHub
parent 4ebb0c9eae
commit 959bfebdfa

View File

@ -74,36 +74,40 @@ Inside AstroWind template, you'll see the following folders and files:
├── src/ ├── src/
│ ├── assets/ │ ├── assets/
│ │ ├── images/ │ │ ├── images/
| | └── styles/ └── styles/
| | └── base.css └── base.css
│ ├── components/ │ ├── components/
│ │ ├── blog/ │ │ ├── blog/
│ │ ├── common/ │ │ ├── common/
| | ── widgets/ ── widgets/
| | ├── Header.astro ├── Header.astro
| | └── ... └── ...
│ │ ├── CustomStyles.astro
│ │ └── Logo.astro
│ ├── content/ │ ├── content/
| ├── blog/ ├── post/
| | ├── post-slug-1.md ├── post-slug-1.md
| | ├── post-slug-2.mdx ├── post-slug-2.mdx
| | └── ... └── ...
| └-- config.ts └-- config.ts
│ ├── layouts/ │ ├── layouts/
| |── BaseLayout.astro ── BaseLayout.astro
| └── ... └── ...
│ ├── pages/ │ ├── pages/
| ├── [...blog]/ ├── [...blog]/
| | | ├── [category]/ ├── [category]/
| | | ├── [tag]/ ├── [tag]/
| | | ├── [...page].astro ├── [...page].astro
| | | └── [slug].astro └── index.astro
| ├── index.astro ├── index.astro
| | ├── 404.astro ├── 404.astro
| | ├-- rss.xml.ts ├-- rss.xml.ts
| └── ... └── ...
│ ├── utils/ │ ├── utils/
── config.mjs ── config.mjs
│ └── data.js
├── package.json ├── package.json
├── astro.config.mjs
└── ... └── ...
``` ```