- 🎨 Theme system (Light/Dark), it detect and set preferred browser theme
- 🌐 Language Switcher (ES/EN)
- ⛓️ Linked translations via a reference property: no need for matching slugs between locales.
- 🏖️ Allow adding pages for a new locale with minimal effort; use the default locale* as a fallback for missing settings and strings.
- 🏷️ Content tags á la WordPress
- 🗺️ Sitemap support with translation links
- 📡 Localized RSS Feeds
- 🌍 Customizable URL structure, like
domain.tld/locale/directory/slug
- 🪽 Skip to content link for screen reader and keyboard users
- 👩💼 Localized author profiles from a single data file
- 🔏 Secret/draft state to exclude posts from rendering
- 🔚 404 Page not found page
- 🐭 Ultra minimal styling without CSS classes with new.css (remove only two lines of code to remove it!)
- 🔗
target="_blank"
for external links with Rehype plugin - 😉 Separate favicon for dev server to not get confused between dev and production
- ✅ 100/100 Lighthouse performance
- ✅ SEO-friendly with canonical URLs and OpenGraph data
- ✅ Markdown & MDX support
You'll see the following folders and files:
├── public/
├── src/
│ ├── components/
│ ├── content/
│ ├── i18n/
│ │ ├── i18n.ts ← Set up locales here
│ │ ├── uiStrings.js ← Localized headings, labels, etc.
│ │ └── utilities ← i18n-specific functions
│ ├── layouts/
│ ├── libs/
│ ├── styles/
│ ├── utilities/
│ ├── consts.ts ← Settings loaded by astro.config.mjs
│ ├── env.d.ts
│ └── header.ts ← Settings for header menus, optionally per locale
├── 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. A 'blog' collection has been defined already.
Any static assets, like images, can be placed in the public/
directory.
All default commands can be run from the root of the project, from a terminal:
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm run dev |
Starts local dev server at localhost:4321 |
pnpm run build |
Build your production site to ./dist/ |
pnpm run preview |
Preview your build locally, before deploying |
pnpm run astro ... |
Run CLI commands like astro add , astro check |
pnpm run astro -- --help |
Get help using the Astro CLI |
You can check TODO-List at TODO.md
- Special thanks to @kslstn for the astro-i18n-blog-starter, which served as a base for this version.