custom/plugins/SteincoTheme/src/Resources/views/storefront/utilities/sc-product-title.html.twig line 1

Open in your IDE?
  1. {#
  2. {% sw_include '@SteincoTheme/storefront/utilities/sc-product-title.html.twig' with {
  3.         prod: product
  4.     }
  5. %}
  6. #}
  7. {% block sc_product_header %}
  8.     {%  if (prod && (prod is sc_rolle())) %}
  9.         <span style="font-weight: 400;text-transform: uppercase;">{{ "steinco.serieText"|trans|default("SERIE") }}</span><span>{{ prod.customFields.custom_product_series }}</span>
  10.     {% elseif (product is sc_zubehoer()) %}
  11.         <span>{{ prod.extensions.properties.property_options['Produktart'].value|e }}</span>
  12.     {% else %}
  13.         <span>{{ prod.translated.name }}</span>
  14.     {%  endif %}
  15. {% endblock %}