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