about summary refs log tree commit diff stats
path: root/templates/taxonomy_list.html
diff options
context:
space:
mode:
authorAlan Pearce2023-04-18 14:53:30 +0200
committerAlan Pearce2023-04-18 14:53:30 +0200
commitc78a3f2301caa3dc4c03d3b2a75f4f003e5863d0 (patch)
tree988cee910507c521d83080cc36a7c2e1665451ef /templates/taxonomy_list.html
parent4df500c33f3d3ba7b9387a2bc0447850a04d15c8 (diff)
downloadwebsite-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.tar.lz
website-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.tar.zst
website-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.zip
Reformat templates
Diffstat (limited to 'templates/taxonomy_list.html')
-rw-r--r--templates/taxonomy_list.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html
index 876087c..ef28c58 100644
--- a/templates/taxonomy_list.html
+++ b/templates/taxonomy_list.html
@@ -1,14 +1,14 @@
 {% extends "base.html" %}
 
 {% block main %}
-<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>
-</content>
+  <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>
+  </content>
 {% endblock %}