diff options
Diffstat (limited to 'default.epub3')
-rw-r--r-- | default.epub3 | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/default.epub3 b/default.epub3 new file mode 100644 index 0000000..ffe2305 --- /dev/null +++ b/default.epub3 | |||
@@ -0,0 +1,70 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!DOCTYPE html> | ||
3 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops"$if(lang)$ xml:lang="$lang$"$endif$> | ||
4 | <head> | ||
5 | <meta charset="utf-8" /> | ||
6 | <meta name="generator" content="pandoc" /> | ||
7 | <title>$pagetitle$</title> | ||
8 | <style type="text/css"> | ||
9 | code{white-space: pre-wrap;} | ||
10 | span.smallcaps{font-variant: small-caps;} | ||
11 | span.underline{text-decoration: underline;} | ||
12 | div.line-block{white-space: pre-line;} | ||
13 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
14 | $if(quotes)$ | ||
15 | q { quotes: "“" "”" "‘" "’"; } | ||
16 | $endif$ | ||
17 | </style> | ||
18 | $if(highlighting-css)$ | ||
19 | <style type="text/css"> | ||
20 | $highlighting-css$ | ||
21 | </style> | ||
22 | $endif$ | ||
23 | $for(css)$ | ||
24 | <link rel="stylesheet" type="text/css" href="$css$" /> | ||
25 | $endfor$ | ||
26 | $for(header-includes)$ | ||
27 | $header-includes$ | ||
28 | $endfor$ | ||
29 | </head> | ||
30 | <body$if(coverpage)$ id="cover"$endif$> | ||
31 | $if(titlepage)$ | ||
32 | <section epub:type="titlepage"> | ||
33 | $for(title)$ | ||
34 | $if(title.type)$ | ||
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 | </section> | ||
59 | $else$ | ||
60 | $for(include-before)$ | ||
61 | $include-before$ | ||
62 | $endfor$ | ||
63 | $body$ | ||
64 | $for(include-after)$ | ||
65 | $include-after$ | ||
66 | $endfor$ | ||
67 | $endif$ | ||
68 | </body> | ||
69 | </html> | ||
70 | |||