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

17 lines
388 B
HTML

{% extends "base.html" %}
{% block title %} – Authors{% endblock %}
{% block content %}
<article>
<header>
<h1>Authors</h1>
</header>
<div>
<ul class="list">
{% for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}