{% if page.full_url contains 'search=' %}Product Search{% else %}{% if page.name == 'Products' %}All Products{% else %}{{ page.name }}{% endif %}{% endif %}
{% for product in products %}
{% assign product_status = '' %}
{% case product.status %}
{% when 'active' %}
{% if product.on_sale %}{% assign product_status = 'On sale' %}{% endif %}
{% when 'sold-out' %}
{% assign product_status = 'Sold out' %}
{% when 'coming-soon' %}
{% assign product_status = 'Coming soon' %}
{% endcase %}
{% capture image_class %}
{% if product.image.height > product.image.width %}
image-tall
{% elsif product.image.height < product.image.width %}
image-wide
{% else %}
image-square
{% endif %}
{% endcapture %}
{% endfor %}
{% if product_status != blank and theme.product_badge_style != 'inline' %}
{{ product_status }}
{% endif %}
{% if theme.show_quickview %}
Quick View
{% endif %}
{{ product.name }}
{% if product.variable_pricing %}
{{ product.min_price | money: theme.money_format }} - {{ product.max_price | money: theme.money_format }}
{% else %}
{{ product.default_price | money: theme.money_format }}
{% endif %}
{% if product_status != blank and theme.product_badge_style == 'inline' %}{{ product_status }}
{% endif %}
{% if theme.show_quickview and theme.mobile_product_grid_style == 'horizontal' %}
{% endif %}