{{ page.name }}

Your cart is empty! Sounds like a good time to start shopping.

{% if cart.items != blank %}
    {% for item in cart.items %}
  • View {{ item.product.name | escape }}
    {{ item.product.name }}
    {% unless item.product.has_default_option %} {{ item.option.name }} - {% endunless %} {{ item.unit_price | money: theme.money_format }}
    Remove
    Quantity {{ item | item_quantity_input, nil, 'option-quantity' }}
    {{ item.price | money: theme.money_format }}
  • {% endfor %}
{% endif %}