mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Missing <ul> in index.html template of notmyidea
This commit is contained in:
parent
60e80ad634
commit
a0fda250c6
2 changed files with 10 additions and 1 deletions
3
pelican/themes/notmyidea/templates/RELEASE.md
Normal file
3
pelican/themes/notmyidea/templates/RELEASE.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Release type: minor
|
||||
|
||||
Adding missing <ul> element to the index.html template in the notmyidea theme
|
||||
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue