{% paginate products from products.current by theme.products_per_page %}
{% endpaginate %}
{% if products != blank %}
-
{% for product in products %}
-
{{ product.name | truncate: 28 }}
{{ product.default_price | money_with_sign }} {% if product.on_sale %} | On Sale {% endif %} {% case product.status %} {% when 'sold-out' %} | Sold Out {% when 'coming-soon' %} | Coming Soon {% endcase %}
{% endfor %}