My garage on the web
Go to file
2024-09-13 10:37:14 +02:00
.frontmatter/database Add sections for Docker networks and reverse proxy 2024-08-17 21:33:51 +02:00
public Make various minor edits and changes to the LBT talk's script 2024-08-30 16:24:42 +02:00
src Remove redundant story section 2024-09-04 19:41:28 +02:00
.gitignore Initial commit from Astro 2023-04-19 19:18:50 +02:00
.markdownlint.json Create the first draft of LBT talk's script 2024-08-07 23:26:42 +02:00
astro.config.mjs Change site URL 2023-04-26 10:22:06 +02:00
CNAME Merge branch 'master' of https://github.com/maciejpedzich/maciejpedzi.ch 2020-11-28 00:02:47 +01:00
Dockerfile Confirm talk's date 2024-08-21 00:38:53 +02:00
frontmatter.json Add Discord verification file 2023-10-27 09:45:24 +02:00
httpd.conf Reintroduce ServerName Apache config property 2024-08-18 21:59:25 +02:00
package-lock.json Merge pull request #17 from maciejpedzich/dependabot/npm_and_yarn/path-to-regexp-6.3.0 2024-09-13 10:37:14 +02:00
package.json Install Roboto Font 2024-07-16 09:34:44 +02:00
README.md Initial commit from Astro 2023-04-19 19:18:50 +02:00
tsconfig.json Initial commit from Astro 2023-04-19 19:18:50 +02:00

Astro Starter Kit: Blog

npm create astro@latest -- --template blog

Open in StackBlitz Open with CodeSandbox Open in GitHub Codespaces

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

blog

Features:

  • Minimal styling (make it your own!)
  • 100/100 Lighthouse performance
  • SEO-friendly with canonical URLs and OpenGraph data
  • Sitemap support
  • RSS Feed support
  • Markdown & MDX support

🚀 Project Structure

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

├── public/
├── src/
│   ├── components/
│   ├── content/
│   ├── layouts/
│   └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── 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.

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 to learn more.

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: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

👀 Want to learn more?

Check out our documentation or jump into our Discord server.

Credit

This theme is based off of the lovely Bear Blog.