From 77ffc8dfeabd45cb3fac500902fcbcb7176edcc7 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 26 Mar 2023 16:55:25 +0900 Subject: project: Initial commit --- templates/taxonomy_single.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/taxonomy_single.html (limited to 'templates/taxonomy_single.html') 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 %} +

+ {{ taxonomy.name | capitalize }} -> {{ term.name | capitalize }} +

+

{{ term.pages | length }} post{{ term.pages | length | pluralize }}

+ {{ posts::display(pages=term.pages) }} +{% endblock content %} -- cgit 1.4.1