templates/cart/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Cart{% endblock %}
  3. {% block body %}
  4. {% include('partials/_breadcrumbs.html.twig') with {
  5. hero_title: "Shopping Cart" ,
  6. hero_title_breadcrumb: "Cart"
  7. } %}
  8. <section class="shop-products-bhv pt60 pb60">
  9. <div class="container shop-container" data-controller="cart" data-action="modal-form:cart_update@document->cart#refresh" >
  10. {% include 'cart/partials/_cart_section.html.twig' %}
  11. </div>
  12. </section>
  13. {% endblock %}