aboutsummaryrefslogtreecommitdiffstats
path: root/templates/taxonomy_list.html
diff options
context:
space:
mode:
authorAhmed M Alaa <aa@4b.cx>2022-12-03 21:01:01 +0200
committerAhmed M Alaa <aa@4b.cx>2022-12-03 21:01:01 +0200
commit028f23e96dd4c6a86465cb616be84480ac3a7a1e (patch)
treecaffe481ff29aab5111e69b242cfc072a84912b6 /templates/taxonomy_list.html
init: just ported the theme
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..e27d135
--- /dev/null
+++ b/templates/taxonomy_list.html
@@ -0,0 +1,17 @@
+{% 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>
+ </li>
+{% endfor %}
+</ul>
+{% endblock content %} \ No newline at end of file