diff options
Diffstat (limited to 'src/layout')
-rw-r--r-- | src/layout/talk.hbs | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/layout/talk.hbs b/src/layout/talk.hbs new file mode 100644 index 0000000..56f3137 --- /dev/null +++ b/src/layout/talk.hbs | |||
@@ -0,0 +1,84 @@ | |||
1 | <!doctype html> | ||
2 | <html lang="en"> | ||
3 | |||
4 | <head> | ||
5 | <meta charset="utf-8"> | ||
6 | |||
7 | <title>{{ title }}</title> | ||
8 | |||
9 | <meta name="author" content="{{author.name}}" /> | ||
10 | |||
11 | <meta name="apple-mobile-web-app-capable" content="yes" /> | ||
12 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> | ||
13 | |||
14 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
15 | |||
16 | <link rel="stylesheet" href="/css/reveal.css"> | ||
17 | <link rel="stylesheet" href="/css/theme/openstack.css" id="theme"> | ||
18 | |||
19 | <!-- For syntax highlighting --> | ||
20 | <link rel="stylesheet" href="/lib/css/zenburn.css"> | ||
21 | |||
22 | <!-- If the query includes 'print-pdf', include the PDF print sheet --> | ||
23 | <script> | ||
24 | var link = document.createElement('link'); | ||
25 | link.rel = 'stylesheet'; | ||
26 | link.type = 'text/css'; | ||
27 | link.href = | ||
28 | window.location.search.match(/print-pdf/gi) ? '/css/print/pdf.css' : | ||
29 | '/css/print/paper.css'; | ||
30 | document.getElementsByTagName('head')[0].appendChild(link); | ||
31 | </script> | ||
32 | </head> | ||
33 | <body> | ||
34 | |||
35 | <div class="reveal"><div class="slides"> | ||
36 | |||
37 | <section data-state="cover"> | ||
38 | |||
39 | <h1><span xmlns:dct="http://purl.org/dc/terms/" | ||
40 | href="http://purl.org/dc/dcmitype/InteractiveResource" | ||
41 | property="dct:title" | ||
42 | rel="dct:type"> | ||
43 | {{ title }} | ||
44 | </span></h1> | ||
45 | <h3 xmlns:cc="http://creativecommons.org/ns#" | ||
46 | property="cc:attributionName">{{author.name}}</h3> | ||
47 | <h4><a xmlns:cc="http://creativecommons.org/ns#" | ||
48 | rel="cc:attributionURL" | ||
49 | href='http://inaugust.com/{{ path }}'>http://inaugust.com/{{ path }}</a> </h4> | ||
50 | <h3> twitter: @e_monty </h3> | ||
51 | </section> | ||
52 | |||
53 | {{{ body }}} | ||
54 | |||
55 | <section> | ||
56 | <h1> Thank you! </h1> | ||
57 | <h4> <a href='http://inaugust.com/{{ path }}'>http://inaugust.com/{{ path }}</a> </h4> | ||
58 | <h3> twitter: @e_monty </h3> | ||
59 | </section> | ||
60 | |||
61 | </div> | ||
62 | |||
63 | <div class="footer"> | ||
64 | <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"> | ||
65 | <img alt="Creative Commons License" | ||
66 | style="border-width:0" | ||
67 | src="https://i.creativecommons.org/l/by/4.0/88x31.png" /> | ||
68 | </a><br /> | ||
69 | Licensed under a | ||
70 | <a rel="license" | ||
71 | href="http://creativecommons.org/licenses/by/4.0/"> | ||
72 | Creative Commons Attribution 4.0 International License | ||
73 | </a>. | ||
74 | <br /> | ||
75 | Source code available at <a href='http://git.inaugust.com/cgit/inaugust.com'>http://git.inaugust.com/cgit/inaugust.com</a> | ||
76 | </div> | ||
77 | |||
78 | <script src="/lib/js/head.min.js"></script> | ||
79 | <script src="/js/reveal.js"></script> | ||
80 | |||
81 | <script src="/js/this.js"></script> | ||
82 | |||
83 | </body> | ||
84 | </html> | ||