website/templates/tags/list.html

21 lines
500 B
HTML

{% extends "base.html" %}
{% block title %}{{taxonomy.name}} – {{ config.extra.sitename|safe }}{% endblock title %}
{% block head %}
{% if section.extra.katex %}{{macros::katex()}}{% endif %}
{% endblock head %}
{% block body %}
<a href="/{{macros::langurl()}}">{{lang}}</a>
<h1>{{taxonomy.name | safe}}</h1>
<section class="tag-list">
{% for tag in terms %}
<a href="{{ tag.path|safe }}">{{ tag.name }}</a> ({{ tag.pages | length }})<br/>
{% endfor %}
</section>
{% endblock body %}