custom/plugins/Tuerschild_2/src/Resources/views/storefront/component/product/card/price-unit.html.twig line 1

Open in your IDE?
  1. {% extends "@Storefront/storefront/component/product/card/price-unit.html.twig" %}
  2. {% block component_product_box_price %}
  3.     <div class="product-price-wrapper">
  4.         {% set price = real %}
  5.         {% if displayFrom %}
  6.             <span class="text-from">
  7.             {{ "listing.listingTextFrom"|trans|sw_sanitize }}
  8.                 </span>
  9.         {% endif %}
  10.         <span class="product-price{% if isListPrice and not displayFrom %} with-list-price{% endif %}">
  11.                     {{ price.unitPrice|currency }}{{ "general.star"|trans|sw_sanitize }}
  12.                 </span>
  13.     </div>
  14. {% endblock %}