diff options
Diffstat (limited to 'default.slideous')
-rw-r--r-- | default.slideous | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/default.slideous b/default.slideous new file mode 100644 index 0000000..4c5e6a7 --- /dev/null +++ b/default.slideous | |||
@@ -0,0 +1,96 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
3 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
4 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
5 | <head> | ||
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
7 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
8 | <meta name="generator" content="pandoc" /> | ||
9 | $for(author-meta)$ | ||
10 | <meta name="author" content="$author-meta$" /> | ||
11 | $endfor$ | ||
12 | $if(date-meta)$ | ||
13 | <meta name="date" content="$date-meta$" /> | ||
14 | $endif$ | ||
15 | $if(keywords)$ | ||
16 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
17 | $endif$ | ||
18 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
19 | <style type="text/css"> | ||
20 | code{white-space: pre-wrap;} | ||
21 | span.smallcaps{font-variant: small-caps;} | ||
22 | span.underline{text-decoration: underline;} | ||
23 | div.line-block{white-space: pre-line;} | ||
24 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
25 | $if(quotes)$ | ||
26 | q { quotes: "“" "”" "‘" "’"; } | ||
27 | $endif$ | ||
28 | </style> | ||
29 | $if(highlighting-css)$ | ||
30 | <style type="text/css"> | ||
31 | $highlighting-css$ | ||
32 | </style> | ||
33 | $endif$ | ||
34 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
35 | href="$slideous-url$/slideous.css" /> | ||
36 | $for(css)$ | ||
37 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
38 | href="$css$" /> | ||
39 | $endfor$ | ||
40 | $if(math)$ | ||
41 | $math$ | ||
42 | $endif$ | ||
43 | $for(header-includes)$ | ||
44 | $header-includes$ | ||
45 | $endfor$ | ||
46 | <script src="$slideous-url$/slideous.js" | ||
47 | charset="utf-8" type="text/javascript"></script> | ||
48 | $if(duration)$ | ||
49 | <meta name="duration" content="$duration$" /> | ||
50 | $endif$ | ||
51 | </head> | ||
52 | <body> | ||
53 | $for(include-before)$ | ||
54 | $include-before$ | ||
55 | $endfor$ | ||
56 | <div id="statusbar"> | ||
57 | <span style="float:right;"> | ||
58 | <span style="margin-right:4em;font-weight:bold;"><span id="slideidx"></span> of {$$slidecount}</span> | ||
59 | <button id="homebutton" title="first slide">1</button> | ||
60 | <button id="prevslidebutton" title="previous slide">«</button> | ||
61 | <button id="previtembutton" title="previous item">‹</button> | ||
62 | <button id="nextitembutton" title="next item">›</button> | ||
63 | <button id="nextslidebutton" title="next slide">»</button> | ||
64 | <button id="endbutton" title="last slide">{$$slidecount}</button> | ||
65 | <button id="incfontbutton" title="content">A+</button> | ||
66 | <button id="decfontbutton" title="first slide">A-</button> | ||
67 | <select id="tocbox" size="1"><option></option></select> | ||
68 | </span> | ||
69 | <span id="eos">½</span> | ||
70 | <span title="{$$location}, {$$date}">{$$title}, {$$author}</span> | ||
71 | </div> | ||
72 | $if(title)$ | ||
73 | <div class="slide titlepage"> | ||
74 | <h1 class="title">$title$</h1> | ||
75 | $if(subtitle)$ | ||
76 | <h1 class="subtitle">$subtitle$</h1> | ||
77 | $endif$ | ||
78 | <p class="author"> | ||
79 | $for(author)$$author$$sep$<br/>$endfor$ | ||
80 | </p> | ||
81 | $if(date)$ | ||
82 | <p class="date">$date$</p> | ||
83 | $endif$ | ||
84 | </div> | ||
85 | $endif$ | ||
86 | $if(toc)$ | ||
87 | <div class="slide" id="$idprefix$TOC"> | ||
88 | $table-of-contents$ | ||
89 | </div> | ||
90 | $endif$ | ||
91 | $body$ | ||
92 | $for(include-after)$ | ||
93 | $include-after$ | ||
94 | $endfor$ | ||
95 | </body> | ||
96 | </html> | ||