aboutsummaryrefslogtreecommitdiffstats
path: root/templates/categories/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/categories/list.html')
-rw-r--r--templates/categories/list.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/categories/list.html b/templates/categories/list.html
new file mode 100644
index 0000000..83b74fb
--- /dev/null
+++ b/templates/categories/list.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block header %}
+<p><a href="{{ current_path }}..">..</a>{{ current_path }}</p>
+<h1>{{ taxonomy.name }}</h1>
+{% endblock header %}
+
+{% block content %}
+<ul>
+{% for term in terms %}
+ <li>
+ <a href="{{ term.permalink | safe }}">{{ term.name }}</a> [{{ term.pages | length }}]
+ </li>
+{% endfor %}
+</ul>
+{% endblock content %} \ No newline at end of file