summaryrefslogtreecommitdiff
path: root/finalize_build.sh
blob: 474be137a4965e5e0a89dc1d0c9f1518474ae7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

ROOT_DIR="./build/website/"
# replace placeholder tags with stuff
for i in $(find "$ROOT_DIR" -type f -name '*.html'); do
	if [ "$(basename "$i")" = 'index.html' ];
	then
		gsed -i -e 's|<!--BACKDIR-->|\| <a href="\.\./index\.html">Back</a>|g' "$i"
	else
		gsed -i -e 's|<!--BACKDIR-->|\| <a href="\./index\.html">Back</a>|g' "$i"
	fi
done;

gsed -i -e 's|\| <a href="\.\./index\.html">Back</a>||g' "$ROOT_DIR/index.html"