aboutsummaryrefslogtreecommitdiffstats
path: root/nmnlist
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2019-04-16 18:58:22 +0200
committerGitHub <noreply@github.com>2019-04-16 18:58:22 +0200
commitef0412c844dcdea24a7d309df209aa157ce50208 (patch)
tree8687bfed33452d89bac76ef4ea94f7615a6cdb19 /nmnlist
parent67b11659a4e251d13cb51096820c975447542292 (diff)
parent42e33bb70188c1c28db2b21b6c4b83a2df94bd5e (diff)
downloadpelican-themes-ef0412c844dcdea24a7d309df209aa157ce50208.tar.gz
Merge pull request #637 from PJUllrich/master
nmnlist: Fix "loop is undefined" issue
Diffstat (limited to 'nmnlist')
-rw-r--r--nmnlist/templates/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/nmnlist/templates/index.html b/nmnlist/templates/index.html
index 274eb5d..ab83db4 100644
--- a/nmnlist/templates/index.html
+++ b/nmnlist/templates/index.html
@@ -24,11 +24,11 @@
{% else %}
<li><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></li>
{% endif %}
-{% endfor %}
- {% if loop.length > 1 %}
- </ol>
- </section><!-- #article-list -->
-{% endif %}
+ {% if loop.length > 1 %}
+ </ol>
+ </section><!-- #article-list -->
+ {% endif %}
+ {% endfor %}
{% else %}
Pas d'articles pour le moment.
{% endif %}