domoboard/templates/index.html

14 lines
283 B
HTML

{% 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' %}