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