flex/templates/tags.html
Alexandre Vicenzi 49e0a6880a Move variables to separated less file.
This allows to customize Flex more easily.
2016-09-14 00:04:22 -03:00

17 lines
412 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 %}