about summary refs log tree commit diff stats
path: root/themes/bear/templates/taxonomy_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/bear/templates/taxonomy_list.html')
-rw-r--r--themes/bear/templates/taxonomy_list.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/bear/templates/taxonomy_list.html b/themes/bear/templates/taxonomy_list.html
new file mode 100644
index 0000000..abf4294
--- /dev/null
+++ b/themes/bear/templates/taxonomy_list.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+
+{% block main %}
+  <main id="content">
+    <small>
+      <div>
+        {% set tags = get_taxonomy(kind="tags") %}
+        {% for post in tags.items %}
+          <a href="{{ post.permalink }}">#{{ post.name }}</a>&nbsp;
+        {% endfor %}
+      </div>
+    </small>
+  </main>
+{% endblock %}