src/Package/Openform/Front/Templates/_blocks/_all_blocks.html.twig line 1

Open in your IDE?
  1. {% for block_item in blocks %}
  2.     {% if block_item.type == 'text' %}
  3.         {% include "@openform_front_templates/_blocks/_text.html.twig" with { block_item } %}
  4.     {% elseif block_item.type == 'text_double' %}
  5.         {% include "@openform_front_templates/_blocks/_text_double.html.twig" with { block_item } %}
  6.     {% elseif block_item.type == 'text_triple' %}
  7.         {% include "@openform_front_templates/_blocks/_text_triple.html.twig" with { block_item } %}
  8.     {% elseif block_item.type == 'text_with_image' %}
  9.         {% include "@openform_front_templates/_blocks/_text_with_image.html.twig" with { block_item } %}
  10.     {% elseif block_item.type == 'text_with_youtube' %}
  11.         {% include "@openform_front_templates/_blocks/_text_with_youtube.html.twig" with { block_item } %}
  12.     {% elseif block_item.type == 'text_with_audio' %}
  13.         {% include "@openform_front_templates/_blocks/_audio.html.twig" with { block_item } %}
  14.     {% elseif block_item.type == 'gallery' %}
  15.         {% include "@openform_front_templates/_blocks/_gallery.html.twig" with { block_item } %}
  16.     {% elseif block_item.type == 'links' %}
  17.         {% include "@openform_front_templates/_blocks/_links.html.twig" with { block_item } %}
  18.     {% elseif block_item.type == 'filesets' %}
  19.         {% include "@openform_front_templates/_blocks/_files.html.twig" with { block_item } %}
  20.     {% elseif block_item.type == 'logotypes' %}
  21.         {% include "@openform_front_templates/_blocks/_logos.html.twig" with { block_item } %}
  22.     {% elseif block_item.type == 'faq' %}
  23.         {% include "@openform_front_templates/_blocks/_faq.html.twig" with { block_item } %}
  24.     {% endif  %}
  25. {% endfor %}