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.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html
new file mode 100644
index 0000000..3c83c16
--- /dev/null
+++ b/templates/taxonomy_list.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block content %}
+<section class="posts">
+ <h1 class="post-title">Tags</h1>
+ {% for term in terms %}
+ <section>
+ <div class="post-content"><a href="{{ term.permalink }}" class="post-title-link">{{ term.name }}</a></div>
+ </section>
+ {% endfor %}
+</section>
+{% endblock %}