Developers
Building apps and themes for the marketplace
1 2 3 4 5 6 7 8 9 10 11 12
{% for product in collection.products %}
<div class="product-card">
<a href="{{ product.url }}">
<img src="{{ product.thumbnail }}">
<h3>{{ product.name }}</h3>
<span>{{ product.price | money }}</span>
</a>
<button data-add-to-cart="{{ product.id }}">
{{ 'add_to_cart' | trans }}
</button>
</div>
{% endfor %}