src/Package/Openform/Front/Templates/_blocks_sections/_slides/_blocks/_index.html.twig line 1

Open in your IDE?
  1. {% set id = '' %}
  2. {% set item = slide.grupped.imagelogo[0]|default(null) %}
  3. {% if item %}
  4.     {% set id = item.id %}
  5. {% endif %} 
  6. {% if slide.all|length > 0 %}
  7.     
  8.     {% for slides in slide.all %}
  9.     {% if slides is iterable %}
  10.        {% include "@openform_front_templates/_blocks_sections/_slides/_blocks/_btn.html.twig" with {items: slides} %}
  11.     {% else  %}
  12.     {% if position is not defined or not position or position == false %}
  13.         {% if slides.type == 'titleslider' %}
  14.             {% include "@openform_front_templates/_blocks_sections/_slides/_blocks/_title.html.twig" with {item: slides} %}
  15.         {% endif %}
  16.     {% endif %}
  17.         {% if slides.type == 'btncta' %}
  18.             {% include "@openform_front_templates/_blocks_sections/_slides/_blocks/_btnCTA.html.twig" with {item: slides} %}
  19.         {% endif %}
  20.         {# {% if slides.type == 'btn' %}
  21.             
  22.         {% endif %} #}
  23.         {% if slides.type == 'textslider' %}
  24.             {% include "@openform_front_templates/_blocks_sections/_slides/_blocks/_text.html.twig" with {item: slides} %}
  25.         {% endif %}
  26.         {% if slides.type == 'imagelogo' and slides.id != id  %}
  27.             {% include "@openform_front_templates/_blocks_sections/_slides/_blocks/_logo.html.twig" with {item: slides} %}
  28.         {% endif %}
  29.     {% endif  %}
  30. {% endfor %}
  31. {% endif %}