--- layout: shop title: "Shop Page 02" ---

Shop All

{% 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 %}
{% endif %} {% endfor %}