{% extends 'base_frontend.html.twig' %} {% block title %} Accueil {% endblock %} {% block content %}
{% include 'frontend/home/include/categorie.html.twig' %} {% include 'frontend/home/include/homebanner.html.twig' %}
{% for show in shows %}
{% if show['largeur'][0] == 4 %} {% set promo = show['promos'][0] %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% elseif show['largeur'][0] == 3 %}
{% for key, promo in show.promos %} {% if (show['largeur'][0] == 3) and (key == 0) %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% else %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% endif %} {% endfor %}
{% elseif show['largeur'][0] == 2 %}
{% for key, promo in show.promos %} {% if (show['largeur'][0] == 2) and (key == 0) %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% else %} {% if (show['largeur'][0] == 2) and (show['largeur'][key] == 1) %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% else %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% endif %} {% endif %} {% endfor %}
{% elseif show['largeur'][0] == 1 %}
{% for key, promo in show.promos %}
{% include 'frontend/home/include/blocUniquePromo.html.twig' %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}