summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html18
1 files changed, 8 insertions, 10 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 6014106..1801d73 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,17 +1,15 @@
---
layout: default
---
-<h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
-<div id="entry">
- {{ content }}
+<article id="entry">
- <p class="timestamp">
+ <header class="entry-title">
+ <h1>{{ page.title }}</h1>
+ </header>
- {{ page.date | date_to_string }}
+ <section>
+ {{ content }}
+ </section>
- </p>
-
-</div>
-
-{% include footer.html %}
+</article>