From faf72059492df8cd09d9ecd805111a8aaa77a221 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sat, 8 Aug 2020 18:05:56 +0200 Subject: Add default pandoc template for HTML --- repo/www/template.html | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 repo/www/template.html (limited to 'repo/www/template.html') diff --git a/repo/www/template.html b/repo/www/template.html new file mode 100644 index 0000000..0676215 --- /dev/null +++ b/repo/www/template.html @@ -0,0 +1,64 @@ + + + + + + +$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