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
- You visit a URL like
/about - Apache rewrites it to
index.php - The router finds
content/about.md - Markdown is converted to HTML and cached
- 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...