Fix issue that occurs after flask updates

This commit is contained in:
wez3 2017-01-10 22:47:20 +01:00
parent 851a288d29
commit 6e9e779095
1 changed files with 2 additions and 1 deletions

View File

@ -3,10 +3,11 @@
{% set count = 0 %}
{% for block in blockArray %}
{% set count = loop.index - 1 %}
{% for k, v in block.iteritems() %}
{% include k + ".html" ignore missing %}
{% endfor %}
{% set count = count + 1 %}
{% endfor %}
{% include 'footer.html' %}