Update project structure
This commit is contained in:
48
README.md
48
README.md
@ -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
|
||||||
└── ...
|
└── ...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user