{% extends 'base.html.twig' %} {% block title %}Shopping Cart - KitsCo{% endblock %} {% block body %} {% include 'shop/_navbar.html.twig' %}

Shopping Cart

{% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %} {% if not cart.empty %}
{% include 'cart/_cart_items.html.twig' %}

Order Summary

Items ({{ cart.itemCount }}) {{ cart.formattedSubtotal }}
Shipping Calculated at checkout
Subtotal {{ cart.formattedSubtotal }}
Proceed to Checkout

Secure checkout - Your data is protected

{% else %}

Your cart is empty

Add some products to get started.

Browse Products
{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}