--- layout: shop title: "Shop Page 04" --- Shop All Filter Default Sorting Price high to low Price low to high Random {% for product in site.data.shop-page-04.products %} {{ product.title }} {{ product.category }} {% if product.sale %} {{ product.sale }} {% endif %} {{ product.price }} {%- assign label = product.label | slugify -%} {% if label == "new" %} new {% endif %} {% if label == "sale" %} sale {% endif %} {% if label == "hot" %} hot {% endif %} {% endfor %} 1 2 3 ... 6
{% if product.sale %} {{ product.sale }} {% endif %} {{ product.price }}