site_opytex/theme/templates/tags.html

19 lines
413 B
HTML

{% extends "base.html" %}
{% block title %} – {{ _('Tags') }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1>{{ _('Tags') }}</h1>
</header>
<div>
<ul class="list">
{%- for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}