mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
8d3e0b4a0e
links
11 lines
515 B
HTML
11 lines
515 B
HTML
{% 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>
|
|
{% endif %}
|
|
{% if was_updated != '0' %}
|
|
<time class="updated" datetime="{{ updated | datetime }}"></time>
|
|
{% endif %}
|