Skip to content

Instantly share code, notes, and snippets.

@Tetsuro
Created November 23, 2012 21:20
Show Gist options
  • Save Tetsuro/4137371 to your computer and use it in GitHub Desktop.
Save Tetsuro/4137371 to your computer and use it in GitHub Desktop.
{% for product in collection.products %}
<div class="product {% cycle '', '', '','last' %}">
<div class="product-image">
<a href="{{ product.url | within: collection }}" alt="{{ product.title}}">
<img src="{{ product.featured_image | product_img_url: 'large' }}" alt="{{ product.title }}" />
</a>
</div>
<div class="product-title">
<a href="{{ product.url | within: collection }}" alt="{{ product.title}}">
{{ product.title }}
</a>
</div>
<div class="product-price">
{% if product.price_varies %}
{{ product.price_min | money }} - {{ product.price_max | money }}
{% else %}
{{ product.price | money }}
{% endif %}
</div>
</div>
{% cycle "","","","<div class='clear-row'></div>" %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment