This folder is organized for editing ergonomics without breaking links.
- Active posts:
src/content/posts/active/<year>/<slug>/index.md - Archived posts:
src/content/posts/archive/<year>/<slug>/index.md
Each post should include a slug field in frontmatter:
---
title: "My Post"
slug: "my-post"
date: "2026-02-02"
---The slug is the canonical URL segment used at /blog/post/<slug>.
Because the slug is explicit, you can move posts between folders freely
without breaking old links.
If you ever rename a slug, you can keep old URLs working:
slug: "new-slug"
slugAliases:
- "old-slug"Aliases will redirect to the canonical slug.