{# app/templates/storefront/cart.html #} {% extends "storefront/base.html" %} {% from 'shared/macros/modals.html' import confirm_modal %} {% block title %}Shopping Cart{% endblock %} {# Alpine.js component #} {% block alpine_data %}shoppingCart(){% endblock %} {% block content %}
{# Breadcrumbs #} {# Page Header #}

Shopping Cart

{# Loading State #}
{# Empty Cart #}
🛒

Your cart is empty

Add some products to get started!

Browse Products
{# Cart Items #}
{# Cart Items List #}
{# Cart Summary #}

Order Summary

Subtotal ( items):
Shipping:
Total:
Continue Shopping

Free shipping on orders over €50

{{ confirm_modal('removeItemConfirm', 'Remove Item', 'Remove this item from your cart?', 'removeItem(pendingRemoveProductId)', 'showRemoveItemConfirm', 'Remove', 'Cancel', 'danger') }} {% endblock %} {% block extra_scripts %} {% endblock %}