stillgreenmossdotnet/build.sh

22 lines
464 B
Bash
Raw Normal View History

2023-11-22 04:17:13 +00:00
#!/bin/sh -e
# prep for build
rm -rf ./site
mkdir -p ./site
mkdir -p ./site/links
mkdir -p ./site/blog
# build top-level pages
cat head.html home.html foot.html > ./site/index.html
cat head.html links.html foot.html > ./site/links/index.html
cat head.html blog.html foot.html > ./site/blog/index.html
# copy one-offs
cp style.css ./site/style.css
cp robots.txt ./site/robots.txt
# build feed
cp ./feed/feed.atom ./site/feed.atom
cp -a ./posts/. ./site/blog/.