{{! templates/pages/custom/brands-page.html }}
{{> components/common/breadcrumbs}}
<section class="container">
<h1 class="page-heading">Shop by Brand</h1>
<ul class="brandGrid">
{{#each brands}}
<li class="brandGrid-item">
<a href="{{url}}" class="brandGrid-link">
{{#if image}}
<img src="{{getImage image 'brand' (cdn theme_settings.default_image_brand)}}"
alt="{{name}}" class="brandGrid-image">
{{else}}
<span class="brandGrid-name">{{name}}</span>
{{/if}}
</a>
</li>
{{/each}}
</ul>
</section>