list.html (478B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{% extends "base.html" %} {%- block title %} <title>Series - {{ config.extra.author }}</title> {%- endblock title -%} {% block main %} <article class="post"> <h1 class="post-title">^{{ taxonomy.name }}</h1> <ul class="post-list"> {% for term in terms %} <li> <a href="{{ term.permalink | safe }}">{{ term.name }}</a> ({{ term.pages | length }} post{{ term.pages | length | pluralize }}) </li> {% endfor %} </ul> </article> {% endblock main %}