Skip to content

Instantly share code, notes, and snippets.

@juque
Created February 15, 2012 20:06
Show Gist options
  • Select an option

  • Save juque/1838666 to your computer and use it in GitHub Desktop.

Select an option

Save juque/1838666 to your computer and use it in GitHub Desktop.
<!--
Bootic.net
Simple HOME de una colecci—n
-->
<h1>{{ collection.title }}</h1>
<div>{{ collection.body }}</div>
<p>Productos de esta colecci—n:</p>
<ul>
{% for product in collection.products %}
<li>
<a href="{{ product.url }}">
<img src="{{ product.first_image | resize: '40x40'}}" />{{ product.model }}
</a>
| <span class="precio">{{ product.price.format }}</span>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment