first version of the new website
[markerbeacon.git] / themes / notmyidea / templates / authors.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ SITENAME }} - Authors{% endblock %}
4
5 {% block content %}
6
7 <section id="content" class="body">
8     <h1>Authors on {{ SITENAME }}</h1>
9     <ul>
10     {% for author, articles in authors|sort %}
11         <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
12     {% endfor %}
13     </ul>
14 </section>
15
16 {% endblock %}