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/
│ ├── assets/
│ │ ├── images/
| | └── styles/
| | └── base.css
└── styles/
└── base.css
│ ├── components/
│ │ ├── blog/
│ │ ├── common/
| | ── widgets/
| | ├── Header.astro
| | └── ...
── widgets/
├── Header.astro
└── ...
│ │ ├── CustomStyles.astro
│ │ └── Logo.astro
│ ├── content/
| ├── blog/
| | ├── post-slug-1.md
| | ├── post-slug-2.mdx
| | └── ...
| └-- config.ts
├── post/
├── post-slug-1.md
├── post-slug-2.mdx
└── ...
└-- config.ts
│ ├── layouts/
| |── BaseLayout.astro
| └── ...
── BaseLayout.astro
└── ...
│ ├── pages/
| ├── [...blog]/
| | | ├── [category]/
| | | ├── [tag]/
| | | ├── [...page].astro
| | | └── [slug].astro
| ├── index.astro
| | ├── 404.astro
| | ├-- rss.xml.ts
| └── ...
├── [...blog]/
├── [category]/
├── [tag]/
├── [...page].astro
└── index.astro
├── index.astro
├── 404.astro
├-- rss.xml.ts
└── ...
│ ├── utils/
── config.mjs
── config.mjs
│ └── data.js
├── package.json
├── astro.config.mjs
└── ...
```