templates/bundles/SyliusShopBundle/Product/Show/header.html.twig line 1

Open in your IDE?
  1. <div class="ui one column grid">
  2.     <h1 id="sylius-product-name" class="text-4xl font-extra-bold full-width" {{ sylius_test_html_attribute('product-name', product.name) }}>{{ product.name }}</h1>
  3.     {% if product.vendor is defined and product.vendor is not null %}
  4.         <a href="{{ path('open_marketplace_shop_vendor_page_index', {'vendor_slug': product.vendor.slug, '_locale': product.translation.locale}) }}"
  5.            style="color: #1678c2;" class="item text-xl">{{ product.vendor.companyName }}</a>
  6.     {% endif %}
  7. </div>