summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-04-30 19:56:37 -0400
committerBen Burwell <bburwell1@gmail.com>2014-04-30 19:56:37 -0400
commitc8db3b6866dda8c25ae54afe16611aa7c0cb7cd4 (patch)
tree100c383f65377dc7d22ac3028ea725629558ccf2 /_layouts/post.html
parent042ebd011194592ec155181dc41976493a07e54a (diff)
Jekyll Init
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 04e3586..fd75b03 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,9 +1,10 @@
---
-layout: default
+layout: master
---
-<h2>{{ page.title }}</h2>
-<p class="meta">{{ page.date | date_to_string }}</p>
+<h1>{{ page.title }}</h1>
+
+{% if page.date %}
+<div class="date">{{ page.date | to_date_string }}</div>
+{% endif %}
-<div class="post">
{{ content }}
-</div>