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_list.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 templates/taxonomy_list.html (limited to 'templates/taxonomy_list.html') diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html new file mode 100644 index 0000000..0c4a579 --- /dev/null +++ b/templates/taxonomy_list.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% block html_title %}{{ taxonomy.name | capitalize }} | {{ config.title }}{% endblock html_title %} + +{% block content %} +

+ {{ taxonomy.name | capitalize }} +

+

{{ terms | length }} term{{ terms | length | pluralize }}

+ + + {% for term in terms %} + + + + {% endfor %} + +
+ | + {{ term.name }} + ({{ term.pages | length }} post{{ term.pages | length | pluralize }}) +
+{% endblock content %} -- cgit 1.4.1