summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags/list.html
blob: 260bb573206953b8ee8176181c98ab99eab29de8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% 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 %}