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

li tags need to be inside of ul or ol.
Thanks to the w3c_validate plugin for finding this.
This commit is contained in:
Mario Lang 2014-02-12 11:47:22 +01:00
commit 3d4eff922a

View file

@ -6,10 +6,11 @@
<section id="content" class="body">
<h1>Tags for {{ SITENAME }}</h1>
<ul>
{%- for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</section>
{% endblock %}