flex/templates/tags.html
Alexandre Vicenzi 2adc599df7 Fix template.
2015-07-22 23:02:51 -03:00

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