flex/templates/tags.html
2016-08-10 19:28:32 +02:00

17 lines
397 B
HTML

{% extends "base.html" %}
{% block title %} – {{ _('Tags') }}{% endblock %}
{% block content %}
<article>
<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 %}