diff options
author | Monty Taylor <mordred@inaugust.com> | 2015-08-01 13:49:51 +1000 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2015-08-01 14:06:15 +1000 |
commit | e80572bca8d345056862235a41597d8b2540e68b (patch) | |
tree | 3b62bc798c9ad99c8733b46c78a6810a91d925d8 /src/talks/index.hbs | |
parent | 506f9db1c9d54a1af4d75ee0ee36e79ccaeacef6 (diff) |
Template the talks!
Diffstat (limited to 'src/talks/index.hbs')
-rw-r--r-- | src/talks/index.hbs | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/src/talks/index.hbs b/src/talks/index.hbs deleted file mode 100644 index e9ed6fc..0000000 --- a/src/talks/index.hbs +++ /dev/null | |||
@@ -1,84 +0,0 @@ | |||
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> | ||