Skip to content

Instantly share code, notes, and snippets.

@ashukasma
Last active January 17, 2016 13:32
Show Gist options
  • Save ashukasma/4a92393eaf0925eafb07 to your computer and use it in GitHub Desktop.
Save ashukasma/4a92393eaf0925eafb07 to your computer and use it in GitHub Desktop.
{% tablerow product in collection.products cols: 3 %}
<div class = "image">
<a href="{{ product.url | within: collection }}"
title="{{ product.title }}">
<img src="{{ product.images.first | product_img_url: 'small' }}"
alt="{{ product.title }}" /></a>
</div>
<div class = "details">
<a href= "{{ product.url | within: collection }}">
{{ product.title | truncate: 30 }}</a><br />
<small>{{ product.price | money }}</small>
</div>
{% endtablerow %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment