flex/templates/tags.html
2016-07-30 14:34:54 +02:00

17 lines
425 B
HTML

{% extends "base.html" %}
{% block title %} – {% trans %}Tags{% endtrans %}{% endblock %}
{% block content %}
<article>
<header>
<h1>{% trans %}Tags{% endtrans %}</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 %}