Welcome to the new Elouvia blog.
This is where you can publish longer reflections, practical guidance, and thoughtful stories in plain Markdown while Astro turns each post into a static page.
Why this setup works well
This blog uses Astro content collections, which are a strong fit for editorial content because they give you:
- typed frontmatter
- static generation for published posts
- a simple content workflow inside your codebase
- support for local images stored right next to the post itself
Writing posts with images
When a post needs an image, place the asset beside the Markdown file and link it with a relative path.
That keeps each article self-contained and makes it easy to move or rename a post without losing its assets.
Draft support
If a post is not ready, add this to the frontmatter:
draft: true
Draft posts are excluded from the public blog index and no public route is generated for them.