2023-04-19 00:34:18 -04:00
|
|
|
{%- css %}.postlist { counter-reset: start-from {{ (postslistCounter or postslist.length) + 1 }} }{% endcss %}
|
|
|
|
<ol reversed class="postlist">
|
2018-01-22 09:17:48 -05:00
|
|
|
{% for post in postslist | reverse %}
|
2023-01-23 12:37:44 -05: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>
|
|
|
|
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate("LLLL yyyy") }}</time>
|
|
|
|
</li>
|
2018-01-22 09:17:48 -05:00
|
|
|
{% endfor %}
|
2018-06-11 09:08:15 -04:00
|
|
|
</ol>
|