summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-04-30 20:39:28 -0400
committerBen Burwell <bburwell1@gmail.com>2014-04-30 20:39:28 -0400
commitd2eec4d4369de581078fc5dd4288a69f225583fc (patch)
tree950aa05bd85a680ffa47d769d22ed86f1c7765ae /_layouts/post.html
parentcbb297cd9b9ecb5f0d7c956b3453b132c4884e5a (diff)
Fix date format
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index fd75b03..536fa28 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -4,7 +4,7 @@ layout: master
<h1>{{ page.title }}</h1>
{% if page.date %}
-<div class="date">{{ page.date | to_date_string }}</div>
+<div class="date">{{ page.date | date: "%-d %B %Y" }}</div>
{% endif %}
{{ content }}