diff options
Diffstat (limited to 'templates/taxonomy_single.html')
-rw-r--r-- | templates/taxonomy_single.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/taxonomy_single.html b/templates/taxonomy_single.html new file mode 100644 index 0000000..e13f439 --- /dev/null +++ b/templates/taxonomy_single.html @@ -0,0 +1,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 %} |