Merge pull request #1457 from svenkreiss/master

Add <ul> to authors.html template so HTML is valid
This commit is contained in:
Justin Mayer 2014-11-02 14:55:04 -08:00
commit d5d821fd87

View file

@ -4,7 +4,10 @@
{% block content %}
<h1>Authors on {{ SITENAME }}</h1>
<ul>
{%- for author, articles in authors|sort %}
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}