blog/templates/tags/list.html

16 lines
313 B
HTML
Raw Normal View History

2023-01-08 03:13:01 +00:00
{% 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 %}