aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/index.md2
-rw-r--r--www/headerleft.css3
-rwxr-xr-xwww/publish.sh13
3 files changed, 14 insertions, 4 deletions
diff --git a/docs/index.md b/docs/index.md
index da89767f..a13be6b9 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,5 +1,5 @@
---
-title: Libreboot documentation
+title: Documentation
...
Information about this release can be found at [release.html](release.html).
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