Initial commit

This commit is contained in:
2026-01-04 04:08:32 -05:00
commit d7cf433bb0
26 changed files with 3859 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.SUFFIXES: .md .html
MD = index.md contact.md about.md 404.md thanks.md
HTML = $(MD:.md=.html)
COPY = form.html style.css script.js logo.webp hamburger.svg
all: static $(MD)
copy $(COPY) static
static:
mkdir -p static
.md.html:
./md.py gen/$< >static/$@