templates/front/front_page/bloc-galerie.html.twig line 1

Open in your IDE?
  1. {% set type = bloc.bloc_type_texte_image|default(0) %}
  2. {% if type == 0 %}
  3.     {% include 'front/front_page/gallery/gallery-3-col-design.html.twig' %}
  4. {% elseif type == 1 %}
  5.     {% include 'front/front_page/gallery/gallery-row-1-2-3.html.twig' %}
  6. {% elseif type == 2 or type == 3 %}
  7.     {% include 'front/front_page/gallery/gallery-popup-slider.html.twig' %}
  8. {% elseif type == 4 %}
  9.     {% include 'front/front_page/gallery/gallery-fullscreen-slider.html.twig' %}
  10. {% elseif type == 5 %}
  11.     {% include 'front/front_page/gallery/gallery-center-slider.html.twig' %}
  12. {% endif %}