Skip to content

Instantly share code, notes, and snippets.

@bernsno
Created January 26, 2010 02:18
Show Gist options
  • Select an option

  • Save bernsno/286470 to your computer and use it in GitHub Desktop.

Select an option

Save bernsno/286470 to your computer and use it in GitHub Desktop.
{% assign vendorname = [] %}
{% for product in collections.all.products %}
{% if vendorname != product.vendor %}
<div class="thumb">
<div class="thumb"><a href="{{product.url}}"><img src="{{ product.featured_image | product_img_url: 'medium' }}" alt="{{ product.title }}"/></a>
<h3><a href="{{product.url}}">{{product.vendor | link_to_vendor}}</a></h3>
</div>
<br />
</div>
{% assign vendorname = product.vendor %}
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment