{% extends "base.html" %} {% block content %} Cart {% if not data.checkout_items %} Your cart is empty. {% else %} {% for item in data.checkout_items %} {% include "partials/checkout-item.html" %} {% endfor %} {% if data.show_checkout %} {% include "partials/form-subtotal.html" %} Shipping Information {% include "partials/form-shipping-info.html" %} {% include "partials/form-total.html" %} Checkout {% include "partials/form-payment-options.html" %} {% for block in data.doc.blocks %} {% if block.type == 'text' %} {{ block.value | md | safe }} {% endif %} {% endfor %} {% else %} Do you want to clear you cart? Clear Cart {% endif %} Your cart is empty. {% endif %} {% with hide_menu=True, custom_border=not data.checkout_items %} {% include "partials/footer.html" %} {% endwith %} {% endblock %}
Your cart is empty.