diff options
author | Elijah Caine <elijahcainemv@gmail.com> | 2017-12-12 10:15:30 -0800 |
---|---|---|
committer | Elijah Caine <elijahcainemv@gmail.com> | 2017-12-12 10:16:33 -0800 |
commit | f1750a4917fafc867eb55d7752bab19147fc6548 (patch) | |
tree | 0534efa5578501622bd65aa49a34f0258c5b8dbe /mnmlist/templates/index.html | |
parent | 2066cb022da2ed06a6ed035b99f960f2034aa415 (diff) | |
download | pelican-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.html | 10 |
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 %} |