{% if cart is not defined %} {% set cart = craft.commerce.carts.cart %} {% endif %} {% block header %}
{%- include "shop/_images/logo" with {'class': 'logo'} -%}
{% include "shop/_includes/nav" %}
{{ craft.app.session.getFlash('notice') }}
{{ craft.app.session.getFlash('error') }}
{% for attribute, errors in cart.errors %} {% if loop.first %}
{% endif %} {% for key, error in errors %}
{{ attribute }}: {{ error }}
{% endfor %} {% if loop.last %}
{% endif %} {% endfor %}
{% endblock %} {% block body %}
{% block main %}
Default Content
You should not see this.
{% endblock %}
{% endblock %}