diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 20:53:04 -0400 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-04-30 20:53:04 -0400 |
commit | 85827b161bb7f70484043f54b4f361cad2ac9feb (patch) | |
tree | 2ff7440055863aebe28b9060b270220cd3246ad2 | |
parent | f34a94998e39d814841972120da5c2e716220599 (diff) |
Fix dumb mistake
-rw-r--r-- | _layouts/post.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index c75ad95..adb4760 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -3,11 +3,13 @@ layout: master --- <div class="doc_detail"> + <h1>{{ page.title }}</h1> {% if page.date %} <div class="date">{{ page.date | date: "%-d %B %Y" }}</div> {% endif %} -</div> -{{ content }} + {{ content }} + +</div> |