Products Catolog
{% for collection in collections %}
{% unless excluded_collections contains collection.handle %}
{% if collection.image %}
{% assign collection_image = collection.image %}
{% assign collection_alt = collection.image.alt %}
{% else %}
{% assign collection_image = collection.products.first.featured_media.preview_image %}
{% assign collection_alt = collection.title %}
{% endif %}
{% render 'content-close' %}
{% render 'image', image: collection_image, image_type: 'collection', image_link_url: collection.url, image_alt: collection_alt %}
{% endunless %}
{% endfor %}
{{ 'collections.collection_list.item_count' | t: count: collection.all_products_count }}