custom/plugins/CogiThemeTulip/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. {% if app.request.attributes.get('theme-name') != 'CogiThemeTulip' %}
  4. {{ parent() }}
  5. {% else %}
  6.     <div class="col-12 product-detail-name-container">
  7.         {% block page_product_detail_name %}
  8.            {{ parent() }}
  9.         {% endblock %}
  10.     </div>
  11. {% endif %}
  12. {% endblock %}
  13. {% block page_product_detail_manufacturer %}
  14. {% if app.request.attributes.get('theme-name') != 'CogiThemeTulip' %}
  15. {{ parent() }}
  16. {% endif %}
  17. {% endblock %}