summaryrefslogtreecommitdiffstats
path: root/default.html5
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-12-27 09:29:34 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-12-27 09:29:34 -0800
commitac3dc50580d7185d18dd4916782904fd733b3bfd (patch)
tree23ec8e7c0c0806fde9a07a1b1d271b814343daf8 /default.html5
parente7d5d8957c77e125b8a1c7eb51356542633d0796 (diff)
downloadpandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.tar.gz
pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.zip
Initial commit, 2.0.5
Diffstat (limited to 'default.html5')
-rw-r--r--default.html573
1 files changed, 73 insertions, 0 deletions
diff --git a/default.html5 b/default.html5
new file mode 100644
index 0000000..2272a01
--- /dev/null
+++ b/default.html5
@@ -0,0 +1,73 @@
1<!DOCTYPE html>
2<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
3<head>
4 <meta charset="utf-8" />
5 <meta name="generator" content="pandoc" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
7$for(author-meta)$
8 <meta name="author" content="$author-meta$" />
9$endfor$
10$if(date-meta)$
11 <meta name="dcterms.date" content="$date-meta$" />
12$endif$
13$if(keywords)$
14 <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
15$endif$
16 <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
17 <style type="text/css">
18 code{white-space: pre-wrap;}
19 span.smallcaps{font-variant: small-caps;}
20 span.underline{text-decoration: underline;}
21 div.line-block{white-space: pre-line;}
22 div.column{display: inline-block; vertical-align: top; width: 50%;}
23$if(quotes)$
24 q { quotes: "“" "”" "‘" "’"; }
25$endif$
26 </style>
27$if(highlighting-css)$
28 <style type="text/css">
29$highlighting-css$
30 </style>
31$endif$
32$for(css)$
33 <link rel="stylesheet" href="$css$">
34$endfor$
35$if(math)$
36 $math$
37$endif$
38 <!--[if lt IE 9]>
39 <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
40 <![endif]-->
41$for(header-includes)$
42 $header-includes$
43$endfor$
44</head>
45<body>
46$for(include-before)$
47$include-before$
48$endfor$
49$if(title)$
50<header>
51<h1 class="title">$title$</h1>
52$if(subtitle)$
53<p class="subtitle">$subtitle$</p>
54$endif$
55$for(author)$
56<p class="author">$author$</p>
57$endfor$
58$if(date)$
59<p class="date">$date$</p>
60$endif$
61</header>
62$endif$
63$if(toc)$
64<nav id="$idprefix$TOC">
65$table-of-contents$
66</nav>
67$endif$
68$body$
69$for(include-after)$
70$include-after$
71$endfor$
72</body>
73</html>