Missing <ul> in index.html template of notmyidea

This commit is contained in:
Boian Berberov 2019-03-22 08:19:00 -06:00
commit a0fda250c6
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,3 @@
Release type: minor
Adding missing <ul> element to the index.html template in the notmyidea theme

View file

@ -50,10 +50,16 @@
{% endfor %}
{% else %}
<section id="content" class="body">
<h2>Pages</h2>
{% if pages %}
<h2>Pages</h2>
<ul>
{% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>This site currently has no content.</p>
{% endif %}
</section>
{% endif %}
{% endblock content %}