#!/bin/bash SITE_TITLE="Volpeon's Den" rm -rf dist/* sassc assets/style.scss dist/style.css node_modules/.bin/postcss dist/style.css -r pyftsubset assets/iosevka-term-ss09-regular.ttf \ --text-file='assets/glyphs.txt' \ --layout-features+=ss09,dlig \ --flavor='woff2' \ --output-file='dist/iosevka-term-ss09-regular.woff2' pyftsubset assets/iosevka-term-ss09-bold.ttf \ --text-file='assets/glyphs.txt' \ --layout-features+=ss09,dlig \ --flavor='woff2' \ --output-file='dist/iosevka-term-ss09-bold.woff2' find content/ \ -iname "*.md" \ -type f \ -exec sh -c 'TARGET=dist/$(echo ${0%.md}.html | cut -sd / -f 2-); mkdir -p $(dirname $TARGET) && pandoc "${0}" -t html5 --template templates/base.html -o "$TARGET" --metadata sitetitle="$1"' {} "$SITE_TITLE" \;