About this website
This is a static website generated from Markdown files. It's a super minimalistic static site generator that I wrote because what's available around the net these days is total overkill. The source is 100 lines of Typescript and it's actually served here because why not? It's deployed via a git hook, from the site's public repo.
How it works
- Create a Markdown file in
/source
- Add a navigation link to it in
/source/_config.json
- Run
node engine
from the root dir to build the html pages. - Git commit
- Push to git repo and the hook will copy it to my server
- If you want to change anything about the look and feel, do it in
assets/template.html
andassets/style.css
, then rebuild.