Skip to content

Instantly share code, notes, and snippets.

@markupboy
Created April 15, 2013 15:32
Show Gist options
  • Save markupboy/5388984 to your computer and use it in GitHub Desktop.
Save markupboy/5388984 to your computer and use it in GitHub Desktop.
get products
<section id="products_list">
<div class="products">
{% for product in products.all %}
<div class="product">
<a href="{{ product.url }}">
<img src="{{ product.images.last | product_image_url }}" alt="Image of {{ product.name | escape }}">
<div class="overlay">
<div>
<h3>{{ product.name }}</h3>
<p>{{ product.default_price | money_with_sign }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment