vendor/dvdw/theme/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. {% block component_product_box_action_inner %}
  3.     <div class="row product-action">
  4.         {% if type === 'gold' and (showPromoPhase or usePromoPhase) %}
  5.             <button class="btn quick-view-button"
  6.                     data-toggle="modal"
  7.                     data-url="{{ path('widgets.quickview.minimal', { 'productId': id }) }}"
  8.                     data-modal-class="quickview-webshop-products">
  9.                 {{ "listingItem.viewProducts"|trans|sw_sanitize }}
  10.             </button>
  11.         {% else %}
  12.             <div class="btn quick-view-button empty"></div>
  13.         {% endif %}
  14.         <a href="{{ product.customFields.dvdw_product_fields_website }}"
  15.            target="_blank"
  16.            class="btn product-link"
  17.            title="{{ "listingItem.goToShop"|trans }}">
  18.             {{ "listingItem.goToShop"|trans }}
  19.         </a>
  20.     </div>
  21. {% endblock %}