diff options
Diffstat (limited to 'templates/html.template')
-rw-r--r-- | templates/html.template | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/html.template b/templates/html.template index 129febb03..68cacd568 100644 --- a/templates/html.template +++ b/templates/html.template @@ -4,7 +4,9 @@ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="pandoc" /> - <meta name="author" content="$authors$" /> +$for(author)$ + <meta name="author" content="$author$" /> +$endfor$ <meta name="date" content="$date$" /> $if(highlighting)$ <style type="text/css"> @@ -28,6 +30,9 @@ $if(highlighting)$ pre.sourceCode span.Error { color: red; font-weight: bold; } </style> $endif$ +$for(css)$ + <link rel="stylesheet" href="$css$" type="text/css" /> +$endfor$ $if(header-includes)$ $header-includes$ $endif$ |