Go to file
2022-08-12 12:26:28 -07:00
.vscode Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
public Self-host fonts 2022-08-12 11:58:45 -07:00
src Font display optional 2022-08-12 12:26:28 -07:00
.gitignore Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
.npmrc Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
.stackblitzrc Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
astro.config.mjs Fixed code block styles 2022-08-12 11:35:44 -07:00
LICENSE Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
package-lock.json Fixed code block styles 2022-08-12 11:35:44 -07:00
package.json Fixed code block styles 2022-08-12 11:35:44 -07:00
README.md Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00
sandbox.config.json Initial commit 2021-11-30 12:18:49 -08:00
screenshot.png Updated README 2021-12-01 10:00:25 -08:00
tsconfig.json Updated to Astro 1.0.3 2022-08-12 10:41:07 -07:00

Astro Blog Template

Screenshot

👉 Check out the Live Demo

👩‍🚀 Getting Started

Locally

npm init astro -- --template Charca/astro-blog-template

On StackBlitz

Open in StackBlitz

Features:

  • Astro 1.0
  • Dark Mode
  • Full Markdown support
  • SEO-friendly setup with canonical URLs and OpenGraph data
  • RSS 2.0 generation
  • Sitemap.xml generation

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
│   ├── robots.txt
│   └── favicon.ico
├── src/
│   ├── components/
│   │   └── Tour.astro
│   └── pages/
│       └── index.astro
└── package.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.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3030
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying

👀 Want to learn more?

Feel free to check Astro's documentation or jump into Astro's Discord server.