custom/plugins/TraumPlugin/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 %}
  3.     <h1 class="product-detail-name"
  4.         itemprop="name">
  5. {#        {{ dump(page.product) }}#}
  6.         {% if page.product.manufacturer %}
  7.             {{ page.product.manufacturer.translated.name}}
  8.         {% endif %}
  9.         {{ page.product.translated.name }}
  10.         {%- if page.product.options is defined -%}
  11.             {% set optionStrings = [] %} {% set seperatorBetweenOptions = ' ' %}
  12.             {%- for option in page.product.options -%}
  13.                 {%- set singleOption = [option.name] -%}
  14.                 {%- set optionStrings = optionStrings|merge(singleOption) -%}
  15.             {%- endfor -%} {{- optionStrings|join(seperatorBetweenOptions) -}}
  16.         {%- endif -%}
  17.     </h1>
  18. {% endblock %}