mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
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:
parent
66ac2bf2da
commit
3d4eff922a
1 changed files with 2 additions and 1 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue