diff options
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 4 |
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 -%} |