summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags/list.html
blob: 0cab25402b5a704ad8df9d78bc64d890fb33e20a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}

{%- block title -%}
all tags
{%- endblock title -%}

{%- block description %}
all tags
{%- endblock description %}

{% block content %}
<nav class="tags">
	<ul class="inline">
		{%- for term in terms %}
		<li><a class="tag bigger" href="{{ get_taxonomy_url(kind="tags", name=term.name) }}">{{ term.name }}<sup>{{ term.pages | length }}</sup></a></li>
		{%- endfor %}
	</ul>
</nav>
{% endblock content %}