crisp-theme.git

git clone https://git.crispbyte.dev/crisp-theme.git

crisp-theme.git / _includes
cheddar  ·  2025-04-18

series_list.njk

1<nav>
2  <h2>{{ seriesName }}</h2>
3  <a href="/series/{{ seriesName | slugify }}/">View on one page</a>
4  <ol>
5  {%- for post in collections.posts | seriesPosts(seriesName) %}
6    {% include "post_link.njk" %}
7  {%- endfor %}
8  </ol>
9</nav>