From 959bfebdfaa8a54df3858bfa4ef251fa61f0478e Mon Sep 17 00:00:00 2001 From: prototypa <54446028+prototypa@users.noreply.github.com> Date: Tue, 24 Jan 2023 12:20:30 -0500 Subject: [PATCH] Update project structure --- README.md | 48 ++++++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 3d7c3c4..d4ddeea 100644 --- a/README.md +++ b/README.md @@ -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 └── ... ```