11 lines
218 B
Bash
Executable File
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
|