2021-09-06 08:31:10 +00:00
# Astro Starter Kit: Blog
2021-07-01 12:43:25 +00:00
2021-09-06 08:31:10 +00:00
```
2022-09-16 17:40:06 +00:00
npm create astro@latest -- --template blog
2021-09-06 08:31:10 +00:00
```
2021-04-14 16:36:00 +00:00
2021-11-23 22:47:05 +00:00
[![Open in StackBlitz ](https://developer.stackblitz.com/img/open_in_stackblitz.svg )](https://stackblitz.com/github/withastro/astro/tree/latest/examples/blog)
2023-02-03 17:52:11 +00:00
[![Open with CodeSandbox ](https://assets.codesandbox.io/github/button-edit-lime.svg )](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/blog)
2023-02-23 17:20:19 +00:00
[![Open in GitHub Codespaces ](https://github.com/codespaces/badge.svg )](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/blog/devcontainer.json)
2021-09-16 15:06:22 +00:00
2021-09-06 08:31:10 +00:00
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
2021-06-08 15:10:56 +00:00
2023-07-25 18:52:05 +00:00
![blog ](https://github.com/withastro/astro/assets/2244813/ff10799f-a816-4703-b967-c78997e8323d )
2022-08-24 14:01:01 +00:00
2021-05-17 22:45:41 +00:00
Features:
2022-08-13 07:09:40 +00:00
- ✅ Minimal styling (make it your own!)
- ✅ 100/100 Lighthouse performance
2022-08-15 04:26:33 +00:00
- ✅ SEO-friendly with canonical URLs and OpenGraph data
- ✅ Sitemap support
- ✅ RSS Feed support
- ✅ Markdown & MDX support
2021-05-17 22:45:41 +00:00
2021-06-08 15:10:56 +00:00
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
2021-04-14 16:36:00 +00:00
2021-09-06 08:31:10 +00:00
```
2022-08-13 07:09:40 +00:00
├── public/
├── src/
│ ├── components/
2023-01-18 13:43:58 +00:00
│ ├── content/
2022-08-13 07:09:40 +00:00
│ ├── layouts/
│ └── pages/
2022-07-12 16:17:36 +00:00
├── astro.config.mjs
├── README.md
├── package.json
2022-06-15 15:32:40 +00:00
└── tsconfig.json
2021-04-14 16:36:00 +00:00
```
2021-09-06 08:31:10 +00:00
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
2021-04-14 16:36:00 +00:00
2021-09-06 08:31:10 +00:00
There's nothing special about `src/components/` , but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
2021-04-14 16:36:00 +00:00
2023-01-18 13:43:58 +00:00
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.
2021-09-06 08:31:10 +00:00
Any static assets, like images, can be placed in the `public/` directory.
2021-04-14 16:36:00 +00:00
2021-06-08 15:10:56 +00:00
## 🧞 Commands
2021-04-14 16:36:00 +00:00
2021-06-08 15:10:56 +00:00
All commands are run from the root of the project, from a terminal:
2023-04-18 06:02:40 +00:00
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add` , `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
2021-06-08 15:10:56 +00:00
## 👀 Want to learn more?
2021-04-14 16:36:00 +00:00
2022-08-13 07:09:40 +00:00
Check out [our documentation ](https://docs.astro.build ) or jump into our [Discord server ](https://astro.build/chat ).
## Credit
2022-08-24 14:01:01 +00:00
This theme is based off of the lovely [Bear Blog ](https://github.com/HermanMartinus/bearblog/ ).