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..084e3b5
--- /dev/null
+++ b/templates/taxonomy_list.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+
+{% block title %}Browse by {{taxonomy.name}}{% endblock title %}
+
+{% block content %}
+<nav class="navbar">
+ <a href="/">Home</a> <!--a href="../">Go Back</a--!>
+</nav>
+<h1 class="title">
+ {{ taxonomy.name }}
+</h1>
+<ul>
+ {% for term in terms %}
+ <li><a href="{{ term.permalink | safe }}">#{{ term.name }}</a> </li>
+ {% endfor %}
+</ul>
+{% endblock content %}