{% if product.available %} {% for col in product.collections %} {% if col.handle == 'new' %} {{ 'products.general.new' | t }} {% endif %} {% endfor %} {% if product.price < product.compare_at_price %} {{ 'products.general.sale' | t }} {% endif %} {% else %} {{ 'products.general.sold' | t }} {% endif %} {% if settings.quickview %} {{ 'products.general.quick_view' | t }} {% endif %} {% if settings.vendor %} {{ product.vendor }} {% endif %} {{ product.title }} {% if product.price < product.compare_at_price %} {{ product.price | money }} {{ product.compare_at_price | money }} {% else %} {% if product.price_varies %} {{ 'products.general.from' | t }} {{ product.price_min | money }} - {{ product.price_max | money }} {% else %}{{ product.price | money }}{% endif %} {% endif %} {% if settings.alternate_colors %} {% include 'product-listing-swatches' %} {% endif %}