custom/plugins/WebLabels/src/Resources/views/storefront/page/product-detail/tabs.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/tabs.html.twig' %}
  2.           {% block page_product_detail_tabs_navigation_description %}
  3.             {{ parent() }}
  4.             {% if page.product.customFields.custom_naehrwerte_ %}
  5.               <li class="nav-item">
  6.                   <a class="nav-link product-detail-tab-navigation-link"
  7.                      id="technic-tab"
  8.                      data-toggle="tab"
  9.                      data-offcanvas-tabs="true"
  10.                      href="#technic-tab-pane"
  11.                      role="tab"
  12.                      aria-controls="technic-tab-pane"
  13.                      aria-selected="false">
  14.                       <span>{{ "wlcustom.detail.naehrwerte"|trans }}</span>
  15.                       <span class="product-detail-tab-navigation-icon">
  16.                           {% sw_icon 'arrow-medium-right' style {'pack':'solid'} %}
  17.                       </span>
  18.                   </a>
  19.               </li>
  20.             {% endif %}
  21.           {% endblock %}
  22.           {% block page_product_detail_tabs_content_description %}
  23.             {{ parent() }}
  24.             {% if page.product.customFields.custom_naehrwerte_ %}
  25.               <div class="tab-pane fade show"
  26.                    id="technic-tab-pane"
  27.                    role="tabpanel"
  28.                    aria-labelledby="technic-tab">
  29.                    {% sw_include '@WebLabels/WebLabels/page/product-detail/technic_tab.html.twig' %}
  30.               </div>
  31.             {% endif %}
  32.           {% endblock %}