ol_site/_includes/postslist.njk
nk 5a3f47dee1
All checks were successful
/ test (push) Successful in 5s
Replace svelte template with 11ty blog template
2025-08-27 23:45:38 +03:00

9 lines
528 B
Plaintext

<ol reversed class="postlist" style="--postlist-index: {{ (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 }}" 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>
{%- endfor %}
</ol>