templates/default/components/organisms/tabs-new/tabs-new.html.twig line 1

Open in your IDE?
  1. <div class="tabs {% if background|default %} tabs--{{ background }} {% endif %} {{ class|default }}">
  2. {% if headline is defined and headline|length %}
  3. <div class="tabs__headline">
  4. {% include 'components/atoms/headline/headline.html.twig' with {
  5. text: headline|first.text
  6. } %}
  7. </div>
  8. {% endif %}
  9. <tabs tabs="{{ tabs|json_encode }}">
  10. {% for tab in tabs %}
  11. <template #tab{{ loop.index0 }}>
  12. {% if tab.html_content is defined and tab.html_content is not empty %}
  13. {{ tab.html_content }}
  14. {% else %}
  15. {% include 'components/organisms/storyblok/storyblok.html.twig' with {
  16. 'componentData': tab.content
  17. } %}
  18. {% endif %}
  19. </template>
  20. {% endfor %}
  21. </tabs>
  22. </div>