Update README.md (#3597)
- Fix the tree to reflect the actual example contents - Remove RSS and Sitemap bullet points, since they aren't in the project
This commit is contained in:
parent
0ffc350c8d
commit
8ed924d2ed
1 changed files with 29 additions and 12 deletions
|
@ -12,24 +12,41 @@ Features:
|
||||||
|
|
||||||
- ✅ SEO-friendly setup with canonical URLs and OpenGraph data
|
- ✅ SEO-friendly setup with canonical URLs and OpenGraph data
|
||||||
- ✅ Full Markdown support
|
- ✅ Full Markdown support
|
||||||
- ✅ RSS 2.0 generation
|
|
||||||
- ✅ Sitemap.xml generation
|
|
||||||
|
|
||||||
## 🚀 Project Structure
|
## 🚀 Project Structure
|
||||||
|
|
||||||
Inside of your Astro project, you'll see the following folders and files:
|
Inside of your Astro project, you'll see the following folders and files:
|
||||||
|
|
||||||
```
|
```
|
||||||
/
|
├── README.md
|
||||||
├── public/
|
├── astro.config.mjs
|
||||||
│ ├── robots.txt
|
├── package.json
|
||||||
│ └── favicon.ico
|
├── public
|
||||||
├── src/
|
│ ├── assets
|
||||||
│ ├── components/
|
│ │ └── blog
|
||||||
│ │ └── Tour.astro
|
│ │ └── introducing-astro.jpg
|
||||||
│ └── pages/
|
│ ├── favicon.ico
|
||||||
│ └── index.astro
|
│ ├── social.jpg
|
||||||
└── package.json
|
│ └── social.png
|
||||||
|
├── sandbox.config.json
|
||||||
|
├── src
|
||||||
|
│ ├── components
|
||||||
|
│ │ ├── Author.astro
|
||||||
|
│ │ ├── BaseHead.astro
|
||||||
|
│ │ ├── BlogHeader.astro
|
||||||
|
│ │ ├── BlogPost.astro
|
||||||
|
│ │ ├── BlogPostPreview.astro
|
||||||
|
│ │ ├── Heading.astro
|
||||||
|
│ │ └── Logo.astro
|
||||||
|
│ ├── layouts
|
||||||
|
│ │ └── BlogPost.astro
|
||||||
|
│ ├── pages
|
||||||
|
│ │ ├── index.astro
|
||||||
|
│ │ └── posts
|
||||||
|
│ │ └── index.md
|
||||||
|
│ └── styles
|
||||||
|
│ └── blog.css
|
||||||
|
└── tsconfig.json
|
||||||
```
|
```
|
||||||
|
|
||||||
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
|
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
|
||||||
|
|
Loading…
Reference in a new issue