Created
March 27, 2012 04:37
-
-
Save juque/2212580 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
| <h2>{% navigation_path ' » ' %}</h2> | |
| {% unless product_type %} | |
| <!-- Estamos en /collections/destacados. Listar tipos con link a /collections/destacados/types/un-tipo --> | |
| {% for type in collection.product_types %} | |
| <h3 class="{{ type }}"> | |
| <a href="{{ collection | typed_collection_path: type }}">{{ type.name }}</a> | |
| </h3> | |
| {% endfor %} | |
| {% else %} | |
| <!-- Estamos en /collections/destacados/types/un-tipo. Listar productos para este tipo --> | |
| {% paginate products by 20 %} | |
| <ul class="products clearfix"> | |
| {% loop paginated_list in 'product_item' %} | |
| </ul> | |
| {{ paginated_list | pagination }} | |
| {% endpaginate %} | |
| {% endunless %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment