diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 20:51:15 -0400 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 20:51:15 -0400 |
commit | 70d4268bb0a140f68ce60a3b33237357629c307a (patch) | |
tree | 00a02bbed64785960606cc72caf6503262249132 /_layouts | |
parent | f620b094198d05e76c63a864ed79b68cf2f56106 (diff) |
Add writing
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/post.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 536fa28..c75ad95 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,10 +1,13 @@ --- layout: master --- -<h1>{{ page.title }}</h1> -{% if page.date %} -<div class="date">{{ page.date | date: "%-d %B %Y" }}</div> -{% endif %} +<div class="doc_detail"> + <h1>{{ page.title }}</h1> + + {% if page.date %} + <div class="date">{{ page.date | date: "%-d %B %Y" }}</div> + {% endif %} +</div> {{ content }} |