diff options
Diffstat (limited to 'default.slidy')
-rw-r--r-- | default.slidy | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/default.slidy b/default.slidy new file mode 100644 index 0000000..5bc237c --- /dev/null +++ b/default.slidy | |||
@@ -0,0 +1,82 @@ | |||
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="$slidy-url$/styles/slidy.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="$slidy-url$/scripts/slidy.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 | $if(title)$ | ||
57 | <div class="slide titlepage"> | ||
58 | <h1 class="title">$title$</h1> | ||
59 | $if(subtitle)$ | ||
60 | <p class="subtitle">$subtitle$</p> | ||
61 | $endif$ | ||
62 | $if(author)$ | ||
63 | <p class="author"> | ||
64 | $for(author)$$author$$sep$<br/>$endfor$ | ||
65 | </p> | ||
66 | $endif$ | ||
67 | $if(date)$ | ||
68 | <p class="date">$date$</p> | ||
69 | $endif$ | ||
70 | </div> | ||
71 | $endif$ | ||
72 | $if(toc)$ | ||
73 | <div class="slide" id="$idprefix$TOC"> | ||
74 | $table-of-contents$ | ||
75 | </div> | ||
76 | $endif$ | ||
77 | $body$ | ||
78 | $for(include-after)$ | ||
79 | $include-after$ | ||
80 | $endfor$ | ||
81 | </body> | ||
82 | </html> | ||