2011-06-27 19:59:21 +00:00
|
|
|
{% 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' %}
|
|
|
|
<time datetime="{{ date | datetime }}" pubdate {% if updated %} updated {% endif %}>{{ date | ordinalize }}</time>
|
2011-06-24 21:17:35 +00:00
|
|
|
{% endif %}
|
2011-06-27 19:59:21 +00:00
|
|
|
{% if was_updated != '0' %}
|
|
|
|
<time class="updated" datetime="{{ updated | datetime }}"></time>
|
2011-06-24 21:17:35 +00:00
|
|
|
{% endif %}
|