{% assign collection_list_exclude = '' %} {% render 'content-open', class: 'column-max' %} {% render 'page-header' %} {% render 'separator' %} {% assign excluded_collections = collection_list_exclude | replace: ' ', '' | split: ',' %}
{% 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 'image', image: collection_image, image_type: 'collection', image_link_url: collection.url, image_alt: collection_alt %}
{{ 'collections.collection_list.item_count' | t: count: collection.all_products_count }}
{% endunless %} {% endfor %}
{% render 'content-close' %}