custom/plugins/BEYCODENT/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_detail %}
  3.     {% if feature('v6.5.0.0') %}
  4.         <div class="d-grid">
  5.             <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  6.                 class="btn btn-light"
  7.                 title="{{ "listing.boxProductDetails"|trans|striptags }}">
  8.                 {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  9.             </a>
  10.         </div>
  11.     {% else %}
  12.         <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  13.             class="btn btn-block btn-primary"
  14.             title="{{ "listing.boxProductDetails"|trans|striptags }}">
  15.             {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  16.         </a>
  17.     {% endif %}
  18. {% endblock %}