custom/static-plugins/EfbStorefront/Resources/views/storefront/component/product/card/wishlist.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/wishlist.html.twig' %}
  2. {% block component_product_wishlist_icon %}
  3.     {% sw_icon 'heart-fill' style { 'namespace': 'EfbStorefront', 'class': 'wishlist icon-wishlist-added', 'size': size } %}
  4.     {% sw_icon 'heart' style { 'namespace': 'EfbStorefront', 'class': 'wishlist icon-wishlist-not-added', 'size': size } %}
  5.     {% if showText %}
  6.         <span class="product-wishlist-btn-content text-wishlist-not-added product-wishlist-btn-content-{{ size }}">
  7.                             {{ "listing.addToWishlist"|trans|sw_sanitize }}
  8.                         </span>
  9.         <span class="product-wishlist-btn-content text-wishlist-remove product-wishlist-btn-content-{{ size }}">
  10.                             {{ "listing.removeFromWishlist"|trans|sw_sanitize }}
  11.                         </span>
  12.     {% endif %}
  13. {% endblock %}