{% comment %}
Use page name from Custo if it's been customized, otherwise use the localized default.
{% endcomment %}
{% assign page_title = t['navigation.cart'] %}
{% if page.name != 'Cart' %}
{% assign page_title = page.name %}
{% endif %}
{% endif %}
{{ page_title }}
{% if errors != blank %} {% endif %} {% if cart.items == blank %} {% else %} {% if theme.cart_text != blank %} {% endif %}-
{% for item in cart.items %}
{% capture aria_label_name %}{{ item.product.name | escape }}{% unless item.product.has_default_option %} - {{ item.option.name | escape }}{% endunless %}{% endcapture %}
-
{{ item.product.name }}{% unless item.product.has_default_option %}{{ item.option.name }}{% endunless %}{{ item.unit_price | money: theme.money_format }}{{ t['cart.remove'] }} {{ item.product.name | escape }}{{ item.price | money: theme.money_format }} {% if item.product.price_suffix != blank %} {{ item.product.price_suffix }} {% endif %}
{% endfor %}