vendor/store.shopware.com/proxabasketcrosssellingsw6/src/Resources/views/storefront/page/checkout/cart/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
  2.  {% block page_checkout_aside %}
  3.      {{ parent() }}
  4.      {% if page.cart.extensions.sliderProducts.all %}
  5.          {% set config = {
  6.              'title': {
  7.                  'value':  'proxa-basket-cross-selling.cart-slider-title'|trans
  8.              },
  9.              'border': {
  10.                  'value': false
  11.              },
  12.              'rotate': {
  13.                  'value': false
  14.              },
  15.              'boxLayout': {
  16.                  'value': 'cart'
  17.              },
  18.              'elMinWidth': {
  19.                  'value': '300px'
  20.              },
  21.              'navigation': {
  22.                  'value': true
  23.              },
  24.              'displayMode': {
  25.                  'value': 'minimal'
  26.              },
  27.              'position' :{
  28.                  'value': page.cart.extensions.sliderType.get(0)
  29.              }
  30.          } %}
  31.          <div class="checkout-product-slider">
  32.              <div class="col-12">
  33.                  {% sw_include '@Storefront/storefront/element/cms-element-cart-product-slider.html.twig' with {
  34.                      elements: page.cart.extensions.sliderProducts.all ,
  35.                      sliderConfig: config,
  36.                  } %}
  37.              </div>
  38.          </div>
  39.      {% endif %}
  40.  {% endblock %}