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

10
build.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
mkdir -p static
cd gen
cp form.html style.css script.js logo.webp hamburger.svg ../static
for md in index.md about.md future.md contact.md thanks.md 404.md ; do
../md.py $md >../static/${md%.*}.html
done