diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/headerleft.css | 3 | ||||
-rwxr-xr-x | www/publish.sh | 13 |
2 files changed, 13 insertions, 3 deletions
diff --git a/www/headerleft.css b/www/headerleft.css new file mode 100644 index 00000000..645ab4ea --- /dev/null +++ b/www/headerleft.css @@ -0,0 +1,3 @@ +header { + text-align: left !important; +} diff --git a/www/publish.sh b/www/publish.sh index 5e89dcb1..ab9147fc 100755 --- a/www/publish.sh +++ b/www/publish.sh @@ -47,6 +47,13 @@ TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc --toc-depth=2") || T # work around heterogenous pandoc versions SMART=$(pandoc -v | grep -q '2\.0' || echo "--smart") || SMART="" -# chuck through pandoc -pandoc $TOC $SMART temp.md -s --css /global.css -T Libreboot \ - --template template.html --metadata return="$RETURN"> $FILE.html + + +if [ "${FILE}" != "./index" ]; then + # chuck through pandoc + pandoc $TOC $SMART temp.md -s --css /global.css --css /headerleft.css -T Libreboot \ + --template template.html --metadata return="$RETURN"> $FILE.html +else + pandoc $TOC $SMART temp.md -s --css /global.css \ + --template template.html --metadata return="$RETURN"> $FILE.html +fi |