custom/plugins/SalvanaPferde2022/src/Resources/views/storefront/component/product/card/action.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
  2. {% set buyable = product.available and product.childCount <= 0 and product.calculatedMaxPurchase > 0 %}
  3. {% block component_product_box_action_inner %}
  4.     {% set id = product.id %}
  5.         <div class="product-action">
  6.           <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  7.              class="btn btn-block btn-light btn-hover"
  8.              title="{{ "listing.boxProductDetails"|trans|striptags }}">
  9.             {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  10.             {% if buyable %}
  11.             <span class="cart-icon">
  12.             <svg xmlns="http://www.w3.org/2000/svg" width="29.934" height="25.078">
  13.               <g data-name="Gruppe 4126" fill="#fff">
  14.                 <path data-name="Pfad 3" d="M29.933 4.986l-5.271 13.9H6.792L4.45 5.325 3.393 2.664H-.001V0h5.13l1.935 4.986z"></path>
  15.                 <circle data-name="Ellipse 1" cx="2.494" cy="2.494" r="2.494" transform="translate(5.939 20.089)"></circle>
  16.                 <circle data-name="Ellipse 2" cx="2.494" cy="2.494" r="2.494" transform="translate(21.73 20.089)"></circle>
  17.               </g>
  18.             </svg>
  19.             </span>
  20.             {% else %}
  21.             {% endif %}
  22.           </a>
  23.         </div>
  24. {% endblock %}