This website is a folder of Markdown files with a very small build script around it. There is no database and there are no browser-side frameworks.
Writing a note
Every note lives in content/notes. A file starts with a few lines of metadata and then becomes ordinary Markdown:
---
title: A useful title
date: 2026-08-06
summary: One sentence shown on the index.
---
Start writing here.
The filename becomes the URL. For example, a-useful-title.md becomes /notes/a-useful-title/.
Looking at it locally
Run the local server and open the address it prints:
npm run dev
The page rebuilds whenever a Markdown file changes. Refresh the browser to see the new version.
That is the whole system. The source remains readable without special software, and the finished site is just HTML and CSS.