summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags/single.html
blob: 22380612eaea6800b95ee297c0da96fab17632c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 %}