_includes/post-meta.html in alembic-jekyll-theme-3.0.4 vs _includes/post-meta.html in alembic-jekyll-theme-3.0.5

- old
+ new

@@ -9,7 +9,8 @@ <span class="label label--category"><a href="{{ site.baseurl }}/categories/#{{ page.category | downcase }}">{{ page.category }}</a></span> {% endcapture %} {% endif %} <small class="small post-meta"> - {{ categories | append: "&nbsp;&middot;&nbsp;" }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time> + {% assign date_format = site.date_format | default: "%d %b %Y" %} + {{ categories | append: "&nbsp;&middot;&nbsp;" }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date: date_format }}</time> </small>