Fix issue that occurs after flask updates
This commit is contained in:
parent
851a288d29
commit
6e9e779095
|
|
@ -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' %}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue