custom/plugins/theme/src/Resources/views/storefront/component/product/card/box-minimal.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/box-minimal.html.twig' %}
  2. {% block component_product_box_info %}
  3.     <div class="product-box-minimal__product-info">
  4.         {% block component_product_box_name %}
  5.             <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  6.                 class="product-name"
  7.                 title="{{ name }}">
  8.                 {{ name }}
  9.             </a>
  10.         {% endblock %}
  11.         {% block component_product_box_price %}
  12.             {% sw_include '@Storefront/storefront/component/product/card/price-unit.html.twig' %}
  13.         {% endblock %}
  14.     </div>
  15. {% endblock %}