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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/headline.html.twig' %}
  2. {% block page_product_detail_name_container %}
  3.     <div class="product-detail-name-container">
  4.         {% block page_product_detail_name %}
  5.             <h1 class="product-detail-name" itemprop="name">
  6.                 {{ page.product.translated.name }}
  7.             </h1>
  8.         {% endblock %}
  9.     </div>
  10.     {% if page.product.customFields.igm_mbs_untertitel|default %}
  11.         <div class="product-detail-subtitle">
  12.             {{ page.product.customFields.igm_mbs_untertitel }}
  13.         </div>
  14.     {% endif %}
  15.     {% if page.product.customFields.short_description is defined %}
  16.         <div class="product-detail-short-description">
  17.             {{ page.product.customFields.short_description }}
  18.         </div>
  19.     {% endif %}
  20. {% endblock %}
  21. {% block page_product_detail_manufacturer %}
  22. {% endblock %}