{% extends 'creative/_layout.html' %}
{% block body %}
{% include theme+'/_nav.html' %}
{% include theme+'/_navtool.html' %}
{% for bloc in myblocs.values() %}
{% if blocEdit == bloc.name %}
{% include theme+'/_'+bloc.type+'-edit.html' %}
{% else %}
{% include theme+'/_'+bloc.type+'.html' %}
{% endif %}
{% endfor %}
{% endblock %}