diff options
Diffstat (limited to 'default.epub2')
-rw-r--r-- | default.epub2 | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/default.epub2 b/default.epub2 new file mode 100644 index 0000000..2abead3 --- /dev/null +++ b/default.epub2 | |||
@@ -0,0 +1,69 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | ||
3 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ xml:lang="$lang$"$endif$> | ||
4 | <head> | ||
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
6 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
7 | <meta name="generator" content="pandoc" /> | ||
8 | <title>$pagetitle$</title> | ||
9 | <style type="text/css"> | ||
10 | code{white-space: pre-wrap;} | ||
11 | span.smallcaps{font-variant: small-caps;} | ||
12 | span.underline{text-decoration: underline;} | ||
13 | div.line-block{white-space: pre-line;} | ||
14 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
15 | $if(quotes)$ | ||
16 | q { quotes: "“" "”" "‘" "’"; } | ||
17 | $endif$ | ||
18 | </style> | ||
19 | $if(highlighting-css)$ | ||
20 | <style type="text/css"> | ||
21 | $highlighting-css$ | ||
22 | </style> | ||
23 | $endif$ | ||
24 | $for(css)$ | ||
25 | <link rel="stylesheet" type="text/css" href="$css$" /> | ||
26 | $endfor$ | ||
27 | $for(header-includes)$ | ||
28 | $header-includes$ | ||
29 | $endfor$ | ||
30 | </head> | ||
31 | <body$if(coverpage)$ id="cover"$endif$> | ||
32 | $if(titlepage)$ | ||
33 | $for(title)$ | ||
34 | $if(title.text)$ | ||
35 | <h1 class="$title.type$">$title.text$</h1> | ||
36 | $else$ | ||
37 | <h1 class="title">$title$</h1> | ||
38 | $endif$ | ||
39 | $endfor$ | ||
40 | $if(subtitle)$ | ||
41 | <p class="subtitle">$subtitle$</p> | ||
42 | $endif$ | ||
43 | $for(author)$ | ||
44 | <p class="author">$author$</p> | ||
45 | $endfor$ | ||
46 | $for(creator)$ | ||
47 | <p class="$creator.role$">$creator.text$</p> | ||
48 | $endfor$ | ||
49 | $if(publisher)$ | ||
50 | <p class="publisher">$publisher$</p> | ||
51 | $endif$ | ||
52 | $if(date)$ | ||
53 | <p class="date">$date$</p> | ||
54 | $endif$ | ||
55 | $if(rights)$ | ||
56 | <div class="rights">$rights$</div> | ||
57 | $endif$ | ||
58 | $else$ | ||
59 | $for(include-before)$ | ||
60 | $include-before$ | ||
61 | $endfor$ | ||
62 | $body$ | ||
63 | $for(include-after)$ | ||
64 | $include-after$ | ||
65 | $endfor$ | ||
66 | $endif$ | ||
67 | </body> | ||
68 | </html> | ||
69 | |||