--- layout: shop title: "Shop Page 02" --- Shop All Filter Default Sorting Price high to low Price low to high Random {% for product in site.data.home-01.products %} {% if product.is_category == false %} {{ 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 %} {% else %} {{ product.title }} {% if product.description %} {{product.description}} {% endif %} {% if product.from_price %} Form {{product.from_price}} {% endif %} {{ product.price }} {% endif %} {% endfor %} 1 2 3 ... 6
{% if product.sale %} {{ product.sale }} {% endif %} {{ product.price }}
{{product.description}}
Form {{product.from_price}}