single.html (469B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{% extends "base.html" %} {%- block title %} <title>^{{ term.name }} - {{ config.extra.author }}</title> {%- endblock title -%} {% block main %} <article class="post"> <h1 class="post-title"> ^{{ term.name }} ({{ term.pages | length }} post{{ term.pages | length | pluralize }}) </h1> <ul class="post-list"> {%- for post in term.pages -%} <li>{{ posts::meta(page=post, list=true) }}</li> {%- endfor -%} </ul> </article> {% endblock main %}