{% extends 'index.html.tpl' %}
{% block css %}
{% include 'edit-tools/css/dropzone' %}
{% endblock %}
{% block body %}
{% include 'themes/'+config.theme+'/_nav.html' %}
{% include 'admin/_menu-admin.html' %}
{% macro print_colors() %}
{% endmacro %}
{% for bloc in myblocs.values() %}
{% if blocEdit == bloc.name %}
{% include 'themes/'+config.theme+'/blocs/edit/_'+bloc.type+'.html' %}
{% else %}
{% include 'themes/'+config.theme+'/blocs/_'+bloc.type+'.html' %}
{% endif %}
{% endfor %}
{% include '_flash_msgs.html' %}
{% endblock %}
{% block js %}
{% endblock %}