summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags/single.html')
-rw-r--r--templates/tags/single.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/tags/single.html b/templates/tags/single.html
new file mode 100644
index 0000000..2238061
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+
+{%- block additional_feeds %}
+<link rel="alternate" type="application/atom+xml" title="zunzuncito - #{{ term.name }}" href="atom.xml" />
+{%- endblock %}
+
+{%- block title -%}
+posts tagged with #{{ term.name }}
+{%- endblock title -%}
+
+{%- block description %}
+posts tagged with #{{ term.name }} ยท <a href="atom.xml">feed</a>
+{%- endblock description %}
+
+{%- block content %}
+{%- for post in paginator.pages %}
+ {{ macros::render_post(post=post) }}
+{%- endfor %}
+{{ macros::render_pagination(paginator=paginator) }}
+{%- endblock content %}