summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html14
-rw-r--r--_layouts/post.html16
-rw-r--r--_layouts/static.html5
3 files changed, 17 insertions, 18 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 80fc4e7..c741dc9 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -23,21 +23,17 @@
<meta name="twitter:description" content="{{ page.summary }}">
<meta name="twitter:url" content="{{ page.url }}">
- <link rel="stylesheet" href="/static/css/screen.css" type="text/css"/>
+ <link rel="stylesheet" href="/static/css/style.css" type="text/css"/>
<link rel="canonical" href="//lumberjaph.net{{ page.url | replace:'index.html','' }}" />
</head>
-<body style>
+<body>
- {% include cover.html %}
-
- <div id="site"> {{ content }} </div>
-
- {% include footer.html %}
+ <div id="container">
+ {{ content }}
+ </div>
</body>
-
-
</html>
diff --git a/_layouts/post.html b/_layouts/post.html
index 1801d73..0af49c3 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,14 +2,14 @@
layout: default
---
-<article id="entry">
+<header>
+ <h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
+</header>
- <header class="entry-title">
- <h1>{{ page.title }}</h1>
- </header>
+<section>
- <section>
- {{ content }}
- </section>
+ <div id="entry"> {{ content }} </div>
-</article>
+ {% include footer.html %}
+
+</section>
diff --git a/_layouts/static.html b/_layouts/static.html
index 5e71126..f3f047e 100644
--- a/_layouts/static.html
+++ b/_layouts/static.html
@@ -2,4 +2,7 @@
layout: default
---
-{{ content }}
+<section>
+ {{ content }}
+ {% include footer.html %}
+</section>