From 9f1ec78474203015dd631286d11f996895490392 Mon Sep 17 00:00:00 2001 From: Matthias Fassl Date: Mon, 4 Aug 2014 23:06:34 +0200 Subject: [PATCH] Switched to a pandoc template --- build-web.sh | 9 +++++---- .../basics_web.html | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) rename includes/basics_web_header.html => templates/basics_web.html (71%) diff --git a/build-web.sh b/build-web.sh index 027126c..ae2f10b 100755 --- a/build-web.sh +++ b/build-web.sh @@ -2,14 +2,15 @@ ./gitinfohook.sh if [ -f /usr/bin/pandoc ] then - cat includes/basics_web_header.html > basics.html pandoc \ --smart \ - --table-of-contents \ + --data-dir . \ + --template basics_web \ + --toc \ --toc-depth=2 \ --email-obfuscation=references \ - --output=- \ - basics.tex >> basics.html + --output=basics.html \ + basics.tex else echo "Error: pandoc executable is needed to generate web version" fi diff --git a/includes/basics_web_header.html b/templates/basics_web.html similarity index 71% rename from includes/basics_web_header.html rename to templates/basics_web.html index 263163f..506df40 100644 --- a/includes/basics_web_header.html +++ b/templates/basics_web.html @@ -1,3 +1,20 @@ +$if(title)$ +
+

$title$

+$if(subtitle)$ +

$subtitle$

+$endif$ +
+$endif$ +

Dieser Studienleitfaden für Erstsemestrige soll alle für dich wichtigen Informationen enthalten und dir damit den Studieneinstieg erleichtern. Dieses Heft ist sowohl als PDF verfügbar, als auch in gedruckter Form (welches du per Post zugeschickt bekommst oder dir bei uns in den Beratungszeiten abholen kannst)

Download Basics

+ +$if(toc)$ +
+$toc$ +
+$endif$ + +$body$ -- 2.43.0