site-neo/src/render.sh
2022-09-24 23:07:46 +01:00

7 lines
217 B
Bash
Executable File

#!/bin/bash
declare -A title=([not_found]="404 - Page Not Found" [index]="Atlas48's Archives")
for i in *.txti; do
flatiron <$i> tmp.html
m4 -DTITLE=${title[${i##.html}]} template.m4.html > ../${i/txti/html}
done