diff options
author | Justin Mayer <entroP@gmail.com> | 2018-07-05 17:15:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 17:15:57 +0200 |
commit | 115c79c36f4c6a37ebeaba6ca57f9efa2641347d (patch) | |
tree | 022823bedfd7fce990cda13b2cda9663bf13855c | |
parent | 12d89d474312f09d326f9c2a097e3ce85d0bf492 (diff) | |
parent | f1750a4917fafc867eb55d7752bab19147fc6548 (diff) | |
download | pelican-themes-115c79c36f4c6a37ebeaba6ca57f9efa2641347d.tar.gz |
Merge pull request #578 from pop/fix-mnmlist-loop-error
Fix mnmlist theme`loop` build error
-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 %} |