Hello, world

This blog is built with Astro. Posts are plain markdown files with frontmatter, living in src/content/blog/.

Writing a post

Create a new .md file in src/content/blog/:

---
title: My post title
description: Optional one-liner shown in lists and RSS.
date: 2026-07-05
tags: [python, tools]
draft: true
---

Post body goes here.

The filename becomes the URL — my-post.md is served at /posts/my-post/. Set draft: true to keep a post out of production builds while it still shows up in local dev.

Tags

Every tag in frontmatter automatically gets its own page at /tags/<tag>/, and the tags index lists them all by post count.

Blockquotes and more

The best way to have a good idea is to have a lot of ideas.

That’s about it. Everything else is just markdown.