{% if page.full_url contains "search=" %}Product Search{% else %}{{ page.name }}{% endif %}
{% paginate products from products.current by theme.products_per_page %} {% if products != blank %}-
{% for product in products %}
-
{{ product.name }}
{{ product.default_price | money_with_sign }}
{% case product.status %} {% when 'active' %} {% if product.on_sale %}On Sale{% endif %} {% when 'sold-out' %} Sold Out {% when 'coming-soon' %} Coming Soon {% endcase %}
{% endfor %}
No products found.
{% endif %} {% endpaginate %}