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