---
title: Your Zine Title Here
slug: your-zine-slug
date: 2026-05-28
issue: 1
blurb: One-sentence pitch that appears on the home-page card. Keep it under ~120 chars.
cover: cover.png
---

# Opening Page

Write the zine in markdown. Headings (`#`, `##`, `###`) turn into hand-drawn-style headers in the
rendered HTML. Code blocks, blockquotes, images, hr all work.

## A Second Section

Drop images in a sibling folder named after your slug:

```
zines/source/your-zine-slug.md      <- this file
zines/source/your-zine-slug/        <- folder (same name)
zines/source/your-zine-slug/cover.png
zines/source/your-zine-slug/page-3.png
```

Anything in that folder gets copied to `zines/<slug>/` on build, so reference them as plain
filenames in the markdown:

![A page from the zine](page-3.png)

> Blockquotes render as side-margin asides.

---

After writing, run:

```
uv run build.py
```

That creates `zines/<slug>/index.html`, `zines/<slug>/<slug>.pdf`, and updates
`zines/manifest.json` so the home page picks it up.
