You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/blog)
8
-
9
-
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
10
-
11
-
Features:
12
-
13
-
- ✅ SEO-friendly setup with canonical URLs and OpenGraph data
14
-
- ✅ Full Markdown support
15
-
- ✅ RSS 2.0 generation
16
-
- ✅ Sitemap.xml generation
17
-
18
-
## 🚀 Project Structure
19
-
20
-
Inside of your Astro project, you'll see the following folders and files:
21
-
22
-
```
23
-
/
24
-
├── public/
25
-
│ ├── robots.txt
26
-
│ └── favicon.ico
27
-
├── src/
28
-
│ ├── components/
29
-
│ │ └── Tour.astro
30
-
│ └── pages/
31
-
│ └── index.astro
32
-
└── package.json
33
-
```
34
-
35
-
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
36
-
37
-
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
38
-
39
-
Any static assets, like images, can be placed in the `public/` directory.
40
-
41
-
## 🧞 Commands
42
-
43
-
All commands are run from the root of the project, from a terminal:
0 commit comments