summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2018-09-06 12:19:29 -0400
committerBrian Picciano <mediocregopher@gmail.com>2018-09-06 12:19:29 -0400
commit76e6a6c905d2a95b384b224198d26bacb0a1bf5e (patch)
treefcbcc56d8be7ca58b62d0b0fcda5f6445b2bf493 /_layouts/post.html
parente01c63ade68e5f4d03b002a610c39751190f1abb (diff)
make date_format a site-wide variable
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 27dc55e..7d74c5d 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -13,12 +13,12 @@ layout: default
</span>
<!-- • -->
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
- {{ page.date | date: "%b %-d, %Y" }}
+ {{ page.date | date: site.date_format }}
</time>
{%- if page.updated %}
<time datetime="{{ page.updated | date_to_xmlschema }}" itemprop="dateModified">
- (Updated {{ page.updated | date: "%b %-d, %Y" }})
+ (Updated {{ page.updated | date: site.date_format }})
</time>
{% endif -%}