crisp-theme/_includes/series_list.njk

10 lines
240 B
Text
Raw Permalink Normal View History

2025-04-18 12:16:26 -04:00
<nav>
<h2>{{ seriesName }}</h2>
<a href="/series/{{ seriesName | slugify }}/">View on one page</a>
2025-04-18 12:16:26 -04:00
<ol>
{%- for post in collections.posts | seriesPosts(seriesName) %}
{% include "post_link.njk" %}
{%- endfor %}
</ol>
</nav>