diff options
Diffstat (limited to 'examples/blog/README.md')
-rw-r--r-- | examples/blog/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/blog/README.md b/examples/blog/README.md index 3fa19109c..c788fa653 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -29,6 +29,7 @@ Inside of your Astro project, you'll see the following folders and files: ├── public/ ├── src/ │ ├── components/ +│ ├── content/ │ ├── layouts/ │ └── pages/ ├── astro.config.mjs @@ -41,6 +42,8 @@ Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. +The `src/content/` directory contains "collections" of related Markdown and MDX documents. Use `getCollection()` to retrieve posts from `src/content/blog/`, and type-check your frontmatter using an optional schema. See [Astro's Content Collections docs](https://docs.astro.build/en/guides/content-collections/) to learn more. + Any static assets, like images, can be placed in the `public/` directory. ## 🧞 Commands |