13 lines
726 B
Plaintext
13 lines
726 B
Plaintext
<ol reversed class="postlist" style="counter-reset: start-from {{ (postslistCounter or 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">{% 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>
|
|
{% for tag in post.data.tags | filterTagList %}
|
|
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %}
|
|
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a>
|
|
{% endfor %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|