summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/css/mordred.css84
-rw-r--r--src/images/smallInAugustLogo.jpegbin0 -> 17258 bytes
-rw-r--r--src/index.html79
-rw-r--r--src/talks/a-vision-for-the-future/index.html (renamed from src/a-vision-for-the-future/index.html)0
-rw-r--r--src/talks/index.hbs (renamed from src/index.hbs)2
-rw-r--r--src/talks/template/index.hbs (renamed from src/template/index.hbs)0
6 files changed, 164 insertions, 1 deletions
diff --git a/src/css/mordred.css b/src/css/mordred.css
new file mode 100644
index 0000000..23674ee
--- /dev/null
+++ b/src/css/mordred.css
@@ -0,0 +1,84 @@
1.browsehappy {
2 margin: 0.2em 0;
3 background: #ccc;
4 color: #000;
5 padding: 0.2em 0;
6}
7
8/* Space out content a bit */
9body {
10 padding-bottom: 20px;
11}
12
13/* Everything but the jumbotron gets side spacing for mobile first views */
14.header,
15.marketing,
16.footer {
17 padding-left: 15px;
18 padding-right: 15px;
19}
20
21/* Custom page header */
22.header {
23 border-bottom: 1px solid #e5e5e5;
24}
25
26 /* Make the masthead heading the same height as the navigation */
27.header h3 {
28 margin-top: 0;
29 margin-bottom: 0;
30 line-height: 40px;
31 padding-bottom: 19px;
32}
33
34/* Custom page footer */
35.footer {
36 padding-top: 19px;
37 color: #777;
38 border-top: 1px solid #e5e5e5;
39}
40
41.container-narrow > hr {
42 margin: 30px 0;
43}
44
45/* Main marketing message and sign up button */
46.jumbotron {
47 background: url(/images/smallInAugustLogo.jpeg) no-repeat;
48 text-align: center;
49 border-bottom: 1px solid #e5e5e5;
50}
51
52.jumbotron .btn {
53 font-size: 21px;
54 padding: 14px 24px;
55}
56
57/* Supporting marketing content */
58.marketing {
59 margin: 40px 0;
60}
61
62.markerting > p + h4 {
63 margin-top: 28px;
64 }
65
66/* Responsive: Portrait tablets and up */
67@media screen and (min-width: 768px) {
68 .container {
69 max-width: 730px;
70 }
71
72 /* Remove the padding we set earlier */
73 .header,
74 .marketing,
75 .footer {
76 padding-left: 0;
77 padding-right: 0;
78 }
79
80 /* Space out the masthead */
81 .header {
82 margin-bottom: 10px;
83 }
84}
diff --git a/src/images/smallInAugustLogo.jpeg b/src/images/smallInAugustLogo.jpeg
new file mode 100644
index 0000000..6d2a40c
--- /dev/null
+++ b/src/images/smallInAugustLogo.jpeg
Binary files differ
diff --git a/src/index.html b/src/index.html
new file mode 100644
index 0000000..340aab5
--- /dev/null
+++ b/src/index.html
@@ -0,0 +1,79 @@
1<!doctype html>
2<html class="no-js">
3 <head>
4 <meta charset="utf-8">
5 <title>In August Productions</title>
6 <meta name="description" content="">
7 <meta name="viewport" content="width=device-width">
8 <link rel="shortcut icon" href="/favicon.ico">
9 <link rel="stylesheet"
10 href="/css/bootstrap.css">
11 <link rel="stylesheet"
12 href="/css/modernizr.css">
13 <link rel="stylesheet"
14 href="/css/mordred.css">
15
16 </head>
17 <body>
18 <!--[if lt IE 10]>
19 <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
20 <![endif]-->
21
22
23 <!--
24 <nav class="navbar navbar-inverse navbar-fixed-top">
25 <div class="container">
26 <div class="header">
27 <ul class="nav nav-pills pull-right">
28 <li class="active"><a href="/">Home</a></li>
29 </ul>
30 <h3 class="text-muted"><a href="/">inaugust.com</a></h3>
31 </div>
32 </div>
33 </nav>
34 -->
35
36 <!-- Main jumbotron for a primary marketing message or call to action -->
37 <div class="jumbotron"
38 xmlns:dct="http://purl.org/dc/terms/"
39 href="http://purl.org/dc/dcmitype/InteractiveResource"
40 property="dct:title"
41 rel="dct:type">
42 <div class="container">
43 <p class="lead">Things you may or may not care or not care about.</p>
44 </div>
45 </div>
46
47 <div class="container">
48 <div class="row">
49 <h3><a href='talks'>Slides for Talks I've Given</a></h3>
50 </div>
51 <div class="row">
52 <h3><a href='big-tent.html'>The Big Tent</a></h3>
53 </div>
54
55 <div class="footer">
56 <p>&copy;
57 <span xmlns:cc="http://creativecommons.org/ns#"
58 property="cc:attributionName">Monty Taylor</span>
59 2015
60 </p>
61
62 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
63 <img alt="Creative Commons License"
64 style="border-width:0"
65 src="https://i.creativecommons.org/l/by/4.0/88x31.png" />
66 </a><br />
67 <a xmlns:cc="http://creativecommons.org/ns#"
68 rel="cc:attributionURL"
69 href='http://inaugust.com'>http://inaugust.com</a> is 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 Website source code available at <a href='https://github.com/emonty/inaugust.com'>https://github.com/emonty/inaugust.com</a>
76 </div>
77
78</body>
79</html>
diff --git a/src/a-vision-for-the-future/index.html b/src/talks/a-vision-for-the-future/index.html
index 88fdbe5..88fdbe5 100644
--- a/src/a-vision-for-the-future/index.html
+++ b/src/talks/a-vision-for-the-future/index.html
diff --git a/src/index.hbs b/src/talks/index.hbs
index 97114c7..4fba0b1 100644
--- a/src/index.hbs
+++ b/src/talks/index.hbs
@@ -5,7 +5,7 @@
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title>Conference Talks</title> 6 <title>Conference Talks</title>
7 <link rel="stylesheet" 7 <link rel="stylesheet"
8 href="css/bootstrap.css"> 8 href="/css/bootstrap.css">
9 <meta name="description" 9 <meta name="description"
10 content="Conference Talks by {{author.name}}"> 10 content="Conference Talks by {{author.name}}">
11 <meta name="author" content="{{author.name}}"> 11 <meta name="author" content="{{author.name}}">
diff --git a/src/template/index.hbs b/src/talks/template/index.hbs
index 1d05d8f..1d05d8f 100644
--- a/src/template/index.hbs
+++ b/src/talks/template/index.hbs