2020-01-02 21:51:24 -06:00
|
|
|
<ol reversed class="postlist" style="counter-reset: start-from {{ (postslistCounter or postslist.length) + 1 }}">
|
2018-01-22 08:17:48 -06:00
|
|
|
{% for post in postslist | reverse %}
|
2018-09-29 23:23:38 -05:00
|
|
|
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
|
|
|
|
<a href="{{ post.url | url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a>
|
|
|
|
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time>
|
2021-03-17 16:29:07 -05:00
|
|
|
{% for tag in post.data.tags | filterTagList %}
|
|
|
|
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %}
|
2020-06-05 22:48:15 +02:00
|
|
|
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a>
|
2018-09-29 23:23:38 -05:00
|
|
|
{% endfor %}
|
|
|
|
</li>
|
2018-01-22 08:17:48 -06:00
|
|
|
{% endfor %}
|
2018-06-11 08:08:15 -05:00
|
|
|
</ol>
|