diff --git a/app/templates/shop/cart.html b/app/templates/shop/cart.html index 58d0fd76..1c261914 100644 --- a/app/templates/shop/cart.html +++ b/app/templates/shop/cart.html @@ -1,489 +1,308 @@ - - - - - - Shopping Cart - {{ vendor.name }} - - - - - -
- -
-
-

🛒 Shopping Cart

-
- -
+{# app/templates/shop/cart.html #} +{% extends "shop/base.html" %} -
- -
-
-

Loading your cart...

-
+{% block title %}Shopping Cart{% endblock %} - -
-
🛒
-

Your cart is empty

-

Add some products to get started!

- Browse Products -
+{# Alpine.js component #} +{% block alpine_data %}shoppingCart(){% endblock %} - -
- -
- +
+ + {# Cart Summary #} +
+
+

+ Order Summary +

+ +
+
+ Subtotal ( items): + +
+ +
+ Shipping: + +
+ +
+ Total: + +
+
+ + + + + Continue Shopping + + +

+ Free shipping on orders over €50 +

+
+{% endblock %} +{% block extra_scripts %} - - - - \ No newline at end of file +{% endblock %}