{% extends "theme/"~ app.request.server.get('APP_THEME') ~"/partials/base.html.twig" %}
{% block stylesheets %}
{{parent()}}
{% endblock %}
{% block custom_class %}{{"home"}}{% endblock %}
{% block body %}
<div class="index-page">
{% if galleries and galleries is not empty and twig_galerie is defined and twig_galerie is not empty %}
{{ include(template_from_string(twig_galerie)) }}
{% endif %}
{% if blocs is defined %}
{{ include ('theme/'~ app.request.server.get('APP_THEME') ~'/partials/bloc_render.html.twig',{blocs: blocs}, with_context = false)}}
{% endif %}
</div>
{% endblock %}
{% block javascripts %}
{{parent()}}
{% endblock %}