blob: e13f4395c6ad8a4738b7eb1e5c36b801e3b0c3ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block html_title %}{{ term.name | capitalize}} | {{ config.title }}{% endblock html_title %}
{% block content %}
<h1 class="title">
{{ taxonomy.name | capitalize }} -> {{ term.name | capitalize }}
</h1>
<h3>{{ term.pages | length }} post{{ term.pages | length | pluralize }}</h3>
{{ posts::display(pages=term.pages) }}
{% endblock content %}
|