Created
March 23, 2014 18:29
-
-
Save boldfacedesign/9727362 to your computer and use it in GitHub Desktop.
shopify collection loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if c.handle contains collection.handle and c.handle != collection.handle %} | |
<li class="{{ forloop.index }}"> | |
<a href="{{ c.url }}" title="{{ c.title }}"> | |
<span class="product-border"></span> | |
<div class="img-wrap"> | |
<span class="img-wrap__inner"> | |
<img src="{{ c.image.src | collection_img_url: 'medium' }}"> | |
</span> | |
</div> | |
<div class="product-price"> | |
<p class="product-price__name">{{ c.title }}</p> | |
</div> | |
</a> | |
</li> | |
{% capture temp %}{{ counter | plus: 1 }}{% endcapture %} | |
{% assign counter = temp %} | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment