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

Open in your IDE?
  1. {# BASE TEMPLATE for all product-detail tabs, they will extend this template #}
  2. {% block tab_title %}
  3. {% endblock %}
  4. {% block tab_content_container %}
  5.     <div class="tab-content">
  6.         {% block tab_content_placeholder %}
  7.             {# The content inside of this block will be filled by extending this template. #}
  8.         {% endblock %}
  9.     </div>
  10. {% endblock %}