You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
515 B
11 lines
515 B
14 years ago
|
{% 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>
|
||
14 years ago
|
{% endif %}
|
||
14 years ago
|
{% if was_updated != '0' %}
|
||
|
<time class="updated" datetime="{{ updated | datetime }}"></time>
|
||
14 years ago
|
{% endif %}
|