HTML error in notmyidea/authors.html: li not allowed in section.

li tags need to be inside of ul or ol.
This commit is contained in:
Mario Lang 2014-02-12 12:19:10 +01:00
commit 18d089e8ea

View file

@ -6,10 +6,11 @@
<section id="content" class="body">
<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>
</section>
{% endblock %}