aboutsummaryrefslogtreecommitdiff
path: root/www/publish.sh
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>2017-04-03 22:59:57 -0700
committerLeah Rowe <info@minifree.org>2017-04-04 23:46:06 +0100
commitd628a77df6f5124627404ed9d79aa164f33fbcb8 (patch)
treed38a29188ed2ce8bde37526ed55bed8534bd7926 /www/publish.sh
parent337575b0dd7e03166779dc23c426758511fc069d (diff)
downloadlibrebootfr-d628a77df6f5124627404ed9d79aa164f33fbcb8.tar.gz
librebootfr-d628a77df6f5124627404ed9d79aa164f33fbcb8.zip
Misc www cleanup
Diffstat (limited to 'www/publish.sh')
-rwxr-xr-xwww/publish.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/www/publish.sh b/www/publish.sh
index 6de15662..671163f6 100755
--- a/www/publish.sh
+++ b/www/publish.sh
@@ -3,12 +3,16 @@
echo $1
FILE=${1%.md}
-# if not homepage, add a link back to the homepage
+cat $1 > temp.md
+
+# add footer
+
+echo '' >> temp.md
+
if [ "${FILE}" != "./index" ]; then
- RETURN="<p><a href='/index.html'>Go back to homepage</a></p>"
+ echo -ne '[Back to home](/index.html) -- ' >> temp.md
fi
-cat $1 > temp.md
echo "[License](license.md)" >> temp.md
# change out .md -> .html
@@ -21,5 +25,4 @@ TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc")
SMART=$(pandoc -v | grep -q '2\.0' || echo "--smart")
# chuck through pandoc
-pandoc $SMART temp.md -s --css /global.css --section-divs -T Libreboot $TOC \
- --template=template.html --metadata "return=$RETURN" > $FILE.html
+pandoc $TOC $SMART temp.md -s --css /global.css -T Libreboot > $FILE.html