summaryrefslogtreecommitdiff
path: root/templates/taxonomy_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/taxonomy_list.html')
-rw-r--r--templates/taxonomy_list.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html
new file mode 100644
index 0000000..18e53ce
--- /dev/null
+++ b/templates/taxonomy_list.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% import "header_macros.html" as header_macros %}
+
+{% block header %}
+ {{ header_macros::small_header() }}
+{% endblock %}
+
+{% block content %}
+<section class="taxonomy single-column">
+ <h1>{{ taxonomy.name | title }}</h1>
+ <ul>
+ {% for term in terms %}
+ <li><a href="{{ term.permalink }}">{{ term.name }}</a></li>
+ {% endfor %}
+ </ul>
+</section>
+{% endblock %}