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

  1. Edit config/site.yaml with your site identity (and theme_color / font_url).
  2. Edit static/css/main.css — update the token primitives in the :root block.
  3. Rewrite templates/pages/home.templ for your story.
  4. Drop your first real post into content/blog/ and delete this one.