Sales

{% if products != blank %}

    {% for product in products.on_sale %}
  • {{ product.name }}

    {% if product.variable_pricing %} {{ product.min_price | money_with_sign }} - {{ product.max_price | money_with_sign }} {% else %} {{ product.default_price | money_with_sign }} {% endif %}

    {% if product.on_sale %}On sale{% endif %} {% if product.status == 'coming-soon' %}Coming soon{% endif %} {% if product.status == 'sold-out' %}Sold out{% endif %}

    View product

    {% if product.on_sale %}On sale{% endif %} {% if product.status == 'sold-out' %}Sold out{% endif %} {% if product.status == 'coming-soon' %}Coming soon{% endif %}
  • {% endfor %}

{% else %}

No products found.

{% endif %}