Shop By Brands
{% if section.settings.title != blank %}
{% endif %}
{{ section.settings.title | escape }}
{% comment %}
Show up to 9 collections.
Frontpage will be excluded if collections defined automatically.
{% endcomment %}
{% assign isEmpty = true %}
{% assign collection_index = 0 %}
{% assign collection_count = 0 %}
{% assign collection_limit = section.blocks.size %}
{% comment %}
Add one to the collection limit to offset chance of Frontpage being included
{% endcomment %}
{% assign collection_limit = collection_limit | plus: 1 %}
{% comment %}
Calculate number of collections to show, making sure Frontpage isn't one
{% endcomment %}
{% for collection in section.blocks limit: collection_limit %}
{% assign collection_count = collection_count | plus: 1 %}
{% endfor %}
{% if collection_count > 0 %}
{% assign isEmpty = false %}
{% endif %}
{% assign divisible_by_three = collection_count | modulo: 3 %}
{% assign divisible_by_two = collection_count | modulo: 2 %}
{% comment %}
Loop through the collections to display
{% endcomment %}
{% for block in section.blocks limit: collection_limit %}
{% assign collection = collections[block.settings.collection] %}
{% assign collection_index = collection_index | plus: 1 %}
{% assign collection_handle = collection.handle %}
{% include 'collection-grid-collage' %}
{% endfor %}
{% if isEmpty %}
{% endif %}
{{ 'home_page.onboarding.no_content' | t }}