xmitter-11ty/_includes/postslist.njk

9 lines
540 B
Plaintext
Raw Normal View History

2020-01-02 22:51:24 -05:00
<ol reversed class="postlist" style="counter-reset: start-from {{ (postslistCounter or postslist.length) + 1 }}">
{% for post in postslist | reverse %}
2018-09-30 00:23:38 -04:00
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
<a href="{{ post.url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a>
2022-08-15 16:00:08 -04:00
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate("LLLL yyyy") }}</time>
2018-09-30 00:23:38 -04:00
</li>
{% endfor %}
2018-06-11 09:08:15 -04:00
</ol>