May 17, 2026 · Author Name
Welcome
This is an example post. Replace it with your own content, or delete it and start fresh from content/blog/.
Markdown features
The blog uses GitHub Flavored Markdown via goldmark, which gives you:
- Standard Markdown — headings, lists, links, bold, italics,
inline code - Tables, strikethrough, task lists, autolinks
- Fenced code blocks with language hints
package main
import "fmt"
func main() {
fmt.Println("hello")
}
Frontmatter
Every post needs a YAML frontmatter block at the top:
---
title: "..."
description: "..."
date: "2026-05-17T12:00:00Z"
published: true
author: "..."
slug: "..."
---
Set published: false to keep a draft in the repo without shipping it.
Next steps
- Edit
config/site.yamlwith your site identity (andtheme_color/font_url). - Edit
static/css/main.css— update the token primitives in the:rootblock. - Rewrite
templates/pages/home.templfor your story. - Drop your first real post into
content/blog/and delete this one.