Writing a New Post
August 21, 2026
- Markdown

To add a post, create a new file in content/posts/your-slug.md. The
filename becomes the URL: your-slug renders at /blog/your-slug.
Frontmatter
Three fields are read from the top of the file:
title— shown as the page heading and in the post listdate— used for sorting and display (YYYY-MM-DD)summary— the one-line description shown on the homepage
Markdown support
Standard Markdown works, plus GitHub-flavored extras like tables and strikethrough:
| Feature | Supported |
|---|---|
| Headings | Yes |
| Code blocks | Yes |
| Tables | Yes |
| Not yet |
There's no JSX or embedded components — just Markdown in, styled HTML out.