Fix issue that occurs after flask updates
This commit is contained in:
parent
851a288d29
commit
6e9e779095
|
|
@ -3,10 +3,11 @@
|
||||||
|
|
||||||
{% set count = 0 %}
|
{% set count = 0 %}
|
||||||
{% for block in blockArray %}
|
{% for block in blockArray %}
|
||||||
|
{% set count = loop.index - 1 %}
|
||||||
{% for k, v in block.iteritems() %}
|
{% for k, v in block.iteritems() %}
|
||||||
{% include k + ".html" ignore missing %}
|
{% include k + ".html" ignore missing %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% set count = count + 1 %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% include 'footer.html' %}
|
{% include 'footer.html' %}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue