2018-01-22 09:17:48 -05:00
|
|
|
<ol class="postlist" style="counter-reset: start-from {{ postslist.length + 1 }}">
|
|
|
|
{% for post in postslist | reverse %}
|
|
|
|
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
|
|
|
|
<a href="{{ post.url | url }}" class="postlist-link">{{ post.data.title }}</a>
|
|
|
|
<span class="postlist-date">{{ post.date | readableDate }}</span>
|
2018-06-11 09:17:20 -04:00
|
|
|
{% for tag in post.data.tags %}
|
|
|
|
{%- if tag != "post" and metadata.tagPages.indexOf(tag) > -1 -%}
|
|
|
|
{% set tagUrl %}/tags/{{ tag }}/{% endset %}
|
|
|
|
<a href="{{ tagUrl | url }}" class="tag">{{ tag }}</a>
|
|
|
|
{%- endif -%}
|
|
|
|
{% endfor %}
|
2018-01-22 09:17:48 -05:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2018-06-11 09:08:15 -04:00
|
|
|
</ol>
|