flex/templates/tags.html
Alexandre Vicenzi b35cde0428 Flex theme.
2015-07-18 21:04:01 -03:00

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