summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags/list.html')
-rw-r--r--templates/tags/list.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/tags/list.html b/templates/tags/list.html
new file mode 100644
index 0000000..0cab254
--- /dev/null
+++ b/templates/tags/list.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{%- block title -%}
+all tags
+{%- endblock title -%}
+
+{%- block description %}
+all tags
+{%- endblock description %}
+
+{% block content %}
+<nav class="tags">
+ <ul class="inline">
+ {%- for term in terms %}
+ <li><a class="tag bigger" href="{{ get_taxonomy_url(kind="tags", name=term.name) }}">{{ term.name }}<sup>{{ term.pages | length }}</sup></a></li>
+ {%- endfor %}
+ </ul>
+</nav>
+{% endblock content %}