.themes/classic/source/_includes/post/date.html
353ccfd4
 {% capture date %}{{ page.date }}{{ post.date }}{% endcapture %}
 {% capture has_date %}{{ date | size }}{% endcapture %}
 {% capture updated %}{{ page.updated }}{{ post.updated }}{% endcapture %}
 {% capture was_updated %}{{ updated | size }}{% endcapture %}
 {% if has_date != '0' %}
2efe11e0
 <time datetime="{{ date | datetime | date_to_xmlschema }}" pubdate {% if updated %} data-updated="true" {% endif %}>{{ date | ordinalize }}</time>
ef3ff431
 {% endif %}
353ccfd4
 {% if was_updated != '0' %}
b6f1451b
 <time class="updated" datetime="{{ updated | datetime | date_to_xmlschema }}">{{ updated | ordinalize }}</time>
ef3ff431
 {% endif %}