ui2022/tabs--static.html.twig line 1

Open in your IDE?
  1. {% set items = _args.items|default([])|filter((item) => item is not empty) %}
  2. <div class="new-tabs">
  3.     <ul class="nav nav-tabs" role="tablist">
  4.         {% for item in items %}
  5.             <li class="nav-item" role="presentation">
  6.                 <a
  7.                     class="nav-link{% if item.active|default(false) %} active{% endif %}"
  8.                     href="{{ item.link|default('#') }}"
  9.                     {% if item.target|default(null) %}target="{{ item.target }}"{% endif %}
  10.                     {% if item.active|default(false) %} aria-selected="true"{% endif %}
  11.                 >
  12.                     {{- item.text -}}
  13.                 </a>
  14.             </li>
  15.         {% endfor %}
  16.     </ul>
  17.     <div class="tab-content">
  18.         {% for item in items %}
  19.             {% if item.active|default(false) %}
  20.                 <div class="tab-pane {% if item.active|default(false) %} active show{% endif %}">
  21.                     {% if block('tab') is defined %}
  22.                         {{ block('tab') }}
  23.                     {% endif %}
  24.                 </div>
  25.             {% endif %}
  26.         {% endfor %}
  27.     </div>
  28. </div>