About

This site is built with a single PHP file, Parsedown for Markdown processing, and plain CSS.

No JavaScript frameworks. No databases. No build steps.

How It Works

  1. You visit a URL like /about
  2. Apache rewrites it to index.php
  3. The router finds content/about.md
  4. Markdown is converted to HTML and cached
  5. The result is wrapped in a clean template and served

Adding Pages

Drop a .md file into the content/ directory and it automatically appears in the navigation. Use front matter at the top of the file to set the title and description:

---
title: My Page Title
description: A short description for SEO
---

Your content here...