diff options
Diffstat (limited to 'default.html4')
-rw-r--r-- | default.html4 | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/default.html4 b/default.html4 new file mode 100644 index 0000000..a771599 --- /dev/null +++ b/default.html4 | |||
@@ -0,0 +1,70 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
2 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
3 | <head> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
5 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
6 | <meta name="generator" content="pandoc" /> | ||
7 | $for(author-meta)$ | ||
8 | <meta name="author" content="$author-meta$" /> | ||
9 | $endfor$ | ||
10 | $if(date-meta)$ | ||
11 | <meta name="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$" type="text/css" /> | ||
34 | $endfor$ | ||
35 | $if(math)$ | ||
36 | $math$ | ||
37 | $endif$ | ||
38 | $for(header-includes)$ | ||
39 | $header-includes$ | ||
40 | $endfor$ | ||
41 | </head> | ||
42 | <body> | ||
43 | $for(include-before)$ | ||
44 | $include-before$ | ||
45 | $endfor$ | ||
46 | $if(title)$ | ||
47 | <div id="$idprefix$header"> | ||
48 | <h1 class="title">$title$</h1> | ||
49 | $if(subtitle)$ | ||
50 | <h1 class="subtitle">$subtitle$</h1> | ||
51 | $endif$ | ||
52 | $for(author)$ | ||
53 | <h2 class="author">$author$</h2> | ||
54 | $endfor$ | ||
55 | $if(date)$ | ||
56 | <h3 class="date">$date$</h3> | ||
57 | $endif$ | ||
58 | </div> | ||
59 | $endif$ | ||
60 | $if(toc)$ | ||
61 | <div id="$idprefix$TOC"> | ||
62 | $table-of-contents$ | ||
63 | </div> | ||
64 | $endif$ | ||
65 | $body$ | ||
66 | $for(include-after)$ | ||
67 | $include-after$ | ||
68 | $endfor$ | ||
69 | </body> | ||
70 | </html> | ||