aboutsummaryrefslogtreecommitdiffstats
path: root/mnmlist/templates/index.html
diff options
context:
space:
mode:
authorElijah Caine <elijahcainemv@gmail.com>2017-12-12 10:15:30 -0800
committerElijah Caine <elijahcainemv@gmail.com>2017-12-12 10:16:33 -0800
commitf1750a4917fafc867eb55d7752bab19147fc6548 (patch)
tree0534efa5578501622bd65aa49a34f0258c5b8dbe /mnmlist/templates/index.html
parent2066cb022da2ed06a6ed035b99f960f2034aa415 (diff)
downloadpelican-themes-f1750a4917fafc867eb55d7752bab19147fc6548.tar.gz
Fix mnmlist `loop` build error.
Fixes this error: CRITICAL: UndefinedError: 'loop' is undefined make: *** [Makefile:65: html] Error 1
Diffstat (limited to 'mnmlist/templates/index.html')
-rw-r--r--mnmlist/templates/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/mnmlist/templates/index.html b/mnmlist/templates/index.html
index d29eb44..d79c90a 100644
--- a/mnmlist/templates/index.html
+++ b/mnmlist/templates/index.html
@@ -23,11 +23,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 %}
No posts found.
{% endif %}