From b9f28e54c1dd613d3aebfb3d4598d08b5d3a2ed4 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 24 Feb 2021 21:45:01 +0100 Subject: [html] add pandoc template using a sidebar for the toc --- html/template.html | 285 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 285 insertions(+) create mode 100644 html/template.html (limited to 'html/template.html') diff --git a/html/template.html b/html/template.html new file mode 100644 index 00000000..9d27c27c --- /dev/null +++ b/html/template.html @@ -0,0 +1,285 @@ + + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(keywords)$ + +$endif$ + $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ + + +$for(css)$ + +$endfor$ + +$if(math)$ + $math$ +$endif$ + +$for(header-includes)$ + $header-includes$ +$endfor$ + + +$for(include-before)$ +$include-before$ +$endfor$ +$if(title)$ +
+

$title$

+$if(subtitle)$ +

$subtitle$

+$endif$ +$for(author)$ +

$author$

+$endfor$ +$if(date)$ +

$date$

+$endif$ +
+$endif$ +$if(toc)$ + +$endif$ +$body$ +$for(include-after)$ +$include-after$ +$endfor$ + + -- cgit v1.2.3