blog/templates/tags/list.html

16 lines
312 B
HTML

{% extends "index.html" %}
{% block main_content %}
{%- set title = "Tags" %}
<ul>
{% for tag in terms %}
<h2>
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag.name) | safe }}">{{ tag.name }}</a> <sup>{{ tag.pages | length }}</sup>
</h2>
{% endfor %}
</ul>
{% endblock main_content %}