pR0Ps | 589f9bd | 2013-12-06 17:00:07 -0500 | [diff] [blame] | 1 | {% extends "base.html" %} |
pR0Ps | 6bf5227 | 2013-12-11 13:25:27 -0500 | [diff] [blame] | 2 | {% block title %}Authors | {{ SITENAME }}{% endblock %} |
pR0Ps | 589f9bd | 2013-12-06 17:00:07 -0500 | [diff] [blame] | 3 | |
| 4 | {% block subheader %} |
| 5 | {% include "modules/blogsubheader.html" %} |
| 6 | {% endblock subheader %} |
| 7 | |
| 8 | {% block content %} |
| 9 | <article> |
| 10 | <div class="article_text"> |
| 11 | <ul> |
pR0Ps | 829e5bd | 2014-09-25 03:02:06 -0400 | [diff] [blame] | 12 | {% for author, articles in authors|sort %} |
pR0Ps | 589f9bd | 2013-12-06 17:00:07 -0500 | [diff] [blame] | 13 | <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li> |
| 14 | {% endfor %} |
| 15 | </ul> |
| 16 | </div> |
| 17 | </article> |
| 18 | {% endblock %} |
| 19 | |