{% if cart.item_count == 0 %}
Your shopping cart is looking rather empty...
{% else %}
You have {{ cart.item_count }} {{ cart.item_count | pluralize: 'product', 'products' }} in here!
{% for item in cart.items %}
{{ item.title }} {% if item.variant.available == true %} ({{item.variant.title}}) {% endif %}
Costs {{ item.price | money }} each,
{{item.line_price | money }}
total.
How many?
{% endfor %}
Subtotal:
{{ cart.total_price | money_with_currency }}
{% if additional_checkout_buttons %}
- or -
{{ content_for_additional_checkout_buttons }}
{% endif %}
{% endif %}