summaryrefslogtreecommitdiff
path: root/src/talks.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/talks.hbs')
-rw-r--r--src/talks.hbs84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/talks.hbs b/src/talks.hbs
new file mode 100644
index 0000000..e9ed6fc
--- /dev/null
+++ b/src/talks.hbs
@@ -0,0 +1,84 @@
1<!doctype html>
2<html lang="en">
3
4<head>
5 <meta charset="utf-8">
6 <title>Conference Talks</title>
7 <link rel="stylesheet"
8 href="/css/bootstrap.css">
9 <link rel="stylesheet"
10 href="/css/mordred.css">
11 <meta name="description"
12 content="Conference Talks by {{author.name}}">
13 <meta name="author" content="{{author.name}}">
14 <meta name="viewport"
15 content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
16</head>
17
18<body>
19<nav class="navbar navbar-default navbar-fixed-top">
20 <div class="container-fluid"><a href="/">
21 <span class="navbar-brand">
22 Things you may or may not care or not care about.</a></span>
23 </div>
24</nav>
25
26<div class="jumbotron">
27 <div class="container-fluid">
28 <h1>
29 <span xmlns:dct="http://purl.org/dc/terms/"
30 href="http://purl.org/dc/dcmitype/InteractiveResource"
31 property="dct:title"
32 rel="dct:type">
33 {{author.name}} Conference Talks
34 </h1>
35 </div>
36</div>
37
38<div class="container-fluid">
39 <div class="row">
40 <div class="col-xs-12">
41 <table class="table table-striped table-hover">
42 <thead>
43 <tr>
44 <th class="col-xs-2">Last Updated</th>
45 <th>Title</th>
46 </tr>
47 </thead>
48 <tbody>
49 {{#each presentations}}
50 <tr>
51 <td>{{datetime mtime}}</td>
52 <td>
53 <a href="{{path}}" target="_blank">
54 {{title}}
55 </a>
56 </td>
57 </tr>
58 {{/each}}
59 </tbody>
60 </table>
61 </div>
62 </div>
63</div>
64<nav class="navbar navbar-default navbar-bottom">
65 <div class="container-fluid">
66 <p class="navbar-text">
67 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
68 <img alt="Creative Commons License"
69 src="https://i.creativecommons.org/l/by/4.0/88x31.png"/>
70 </a>
71 <a xmlns:cc="http://creativecommons.org/ns#"
72 rel="cc:attributionURL"
73 href='http://inaugust.com'>http://inaugust.com</a>
74 by <span xmlns:cc="http://creativecommons.org/ns#"
75 property="cc:attributionName">Monty Taylor</span>
76 is licensed under a <a rel="license"
77 href="http://creativecommons.org/licenses/by/4.0/">Creative
78 Commons Attribution 4.0 International License</a>.
79 Website source code available at <a href='http://git.inaugust.com/cgit/inaugust.com'>http://git.inaugust.com/cgit/inaugust.com</a>
80 </p>
81 </div>
82</nav>
83</body>
84</html>