Created
February 15, 2012 20:06
-
-
Save juque/1838666 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| 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