blob: 7d0b8ec5f91abae4c36c1ced2330b7ee46952997 (
plain)
1
2
3
4
|
# ! /bin/sh
cp style.css public/
(cat _header.html; multimarkdown index.md; cat _footer.html) > public/index.html
find public -type f \( -name "*.html" -o -name "*.css" \) -exec gzip -k -f {} \;
|