Hello, world

This is the first post on a fresh Zola blog using the tabi theme, served from Codeberg Pages.

A few things that work out of the box:

  • Light/dark toggle in the top corner — try it.
  • Full-text search (press the search icon).
  • Tags and an archive view for browsing.
  • An Atom feed at /atom.xml.

Writing posts

Each post is a Markdown file. The quickest way to add one:

mkdir -p content/blog/my-post
$EDITOR content/blog/my-post/index.md

…with front matter like the block at the top of this file. Code blocks are syntax-highlighted:

fn main() {
    println!("Hello, world");
}

Keeping each post in its own folder (my-post/index.md) means you can drop images right next to the text and reference them with relative paths.

That’s it — write, build, deploy.