Shopping Cart

{% if cart.item_count == 0 %}

Your shopping basket is empty. Perhaps a featured item below is of interest...

{% tablerow product in collections.frontpage.products cols: 3 limit: 12 %} {% endtablerow %} {% else %}
{% for item in cart.items %} {% endfor %}
Item Description Price Qty Delete Total
{{ item.title | escape }}

{{ item.title }}

{{ item.product.description | strip_html | truncate: 120 }}
{{ item.price | money }}{% if item.variant.compare_at_price > item.price %}
{{ item.variant.compare_at_price | money }}{% endif %}
Remove {{ item.line_price | money }}

Subtotal {{ cart.total_price | money }}

{% if additional_checkout_buttons %}

- or -

{{ content_for_additional_checkout_buttons }}
{% endif %}
{% endif %}