diff options
Diffstat (limited to 'src/index.hbs')
| -rw-r--r-- | src/index.hbs | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/index.hbs b/src/index.hbs new file mode 100644 index 0000000..c5cbc93 --- /dev/null +++ b/src/index.hbs | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | <!doctype html> | ||
| 2 | <html lang="en"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8"> | ||
| 6 | <title>Convention Presentations</title> | ||
| 7 | <link rel="stylesheet" | ||
| 8 | href="css/bootstrap.css"> | ||
| 9 | <meta name="description" | ||
| 10 | content="Convention Presentations by {{author.name}}"> | ||
| 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 | <div class="container-fluid"> | ||
| 19 | <span class="navbar-brand">Convention Presentations</span> | ||
| 20 | </div> | ||
| 21 | </nav> | ||
| 22 | <div class="container-fluid"> | ||
| 23 | <div class="row"> | ||
| 24 | <div class="col-xs-12"> | ||
| 25 | <ul class="list-unstyled"> | ||
| 26 | <li><strong>Author:</strong> {{author.name}}</li> | ||
| 27 | <li><strong>Website:</strong> | ||
| 28 | <a href="{{author.url}}">{{author.url}}</a> | ||
| 29 | </li> | ||
| 30 | </ul> | ||
| 31 | <br/> | ||
| 32 | <table class="table table-striped table-hover"> | ||
| 33 | <thead> | ||
| 34 | <tr> | ||
| 35 | <th class="col-xs-2">Last Updated</th> | ||
| 36 | <th>Title</th> | ||
| 37 | </tr> | ||
| 38 | </thead> | ||
| 39 | <tbody> | ||
| 40 | {{#each presentations}} | ||
| 41 | <tr> | ||
| 42 | <td>{{datetime mtime}}</td> | ||
| 43 | <td> | ||
| 44 | <a href="{{path}}" target="_blank"> | ||
| 45 | {{title}} | ||
| 46 | </a> | ||
| 47 | </td> | ||
| 48 | </tr> | ||
| 49 | {{/each}} | ||
| 50 | </tbody> | ||
| 51 | </table> | ||
| 52 | </div> | ||
| 53 | </div> | ||
| 54 | </div> | ||
| 55 | <nav class="navbar navbar-default navbar-fixed-bottom"> | ||
| 56 | <div class="container-fluid"> | ||
| 57 | <p class="navbar-text"> | ||
| 58 | <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"> | ||
| 59 | <img alt="Creative Commons License" | ||
| 60 | src="https://i.creativecommons.org/l/by/4.0/88x31.png"/> | ||
| 61 | </a> | ||
| 62 | This work by <span xmlns:cc="http://creativecommons.org/ns#" | ||
| 63 | property="cc:attributionName">{{author.name}}</span> | ||
| 64 | is licensed under a <a rel="license" | ||
| 65 | href="http://creativecommons.org/licenses/by/4.0/">Creative | ||
| 66 | Commons Attribution 4.0 International License</a>. | ||
| 67 | </p> | ||
| 68 | </div> | ||
| 69 | </nav> | ||
| 70 | </body> | ||
| 71 | </html> | ||
