summaryrefslogtreecommitdiffstats
path: root/templates/index_tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index_tags.html')
-rw-r--r--templates/index_tags.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/index_tags.html b/templates/index_tags.html
new file mode 100644
index 0000000..05c4d17
--- /dev/null
+++ b/templates/index_tags.html
@@ -0,0 +1,8 @@
+<ul class="tags-list">
+{% for tag in tags %}
+ <li>
+ <a href="{{ tag.name }}.html"><span class="icon"><svg><use href="/img/icons.svg#tag"></use></svg></span> <code>{{ tag.name }}</code></a>
+ ({{ tag.contents | length }})
+ </li>
+{% endfor %}
+</ul>