Hello, world
Welcome to the new blog. It's built with Zola, a fast static-site generator, and published with Codeberg Pages at blog.riverma.com.
Writing a new post
Add a Markdown file under content/, for example content/my-post.md:
+++
title = "My post title"
date = 2026-06-20
description = "A one-line summary."
[taxonomies]
tags = ["projects"]
+++
Your content here.Commit it (from the desktop or the Codeberg web editor on your phone) and CI rebuilds the site automatically.
Drafts
Set draft = true in the front matter and the post is kept out of the published site until you're ready:
+++
title = "Work in progress"
draft = true
+++