Files
hrtime/build.sh
2026-01-04 04:08:32 -05:00

11 lines
218 B
Bash
Executable File

#!/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