templates/app/base/header/cart/cart.html.twig line 1

Open in your IDE?
  1. <div class="bg-grey-cart d-flex flex-row px-0 align-items-center h-100 wp-200">
  2.     <span class="image-bottom-number py-0 flex-1">
  3.         <a href="{{ path('sylius_shop_cart_summary') }}">
  4.             <img src={{ asset("build/images/cart.png") }}>
  5.         </a>
  6.         <span id="header_cart_items" class="left-bottom-number border-grey bg-white ct-darkgray ff-os-regular">{{ getCurrentCartItemsCount() }}</span>
  7.     </span>
  8.     <div class="ml-3 border-left border-white h-75 d-flex align-items-center justify-content-center w-100 flex-2 text-truncate">
  9.         <a href="{{ path('sylius_shop_cart_summary') }}" class="link-cart">
  10.             <h6 class="my-0 text-white mw-100 ff-os-regular"/>
  11.                 {{ "bundles.sylius_shop.homepage.index.header.icons_bar.buy.label"|trans }}
  12.             </h6>
  13.         </a>
  14.     </div>
  15. </div>