flex/templates/tags.html
Alexandre Vicenzi 244807c8bb Add extra space.
2015-07-21 00:53:19 -03:00

17 lines
375 B
HTML

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