mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
20 lines
1.1 KiB
Plaintext
20 lines
1.1 KiB
Plaintext
{% paginate collection.products by 12 %}{% if collection.products.size == 0 %}
|
|
<strong>No products found in this collection.</strong>{% else %}
|
|
<h1>{{ collection.title }}</h1>
|
|
{{ collection.description }}
|
|
<table id="gallery">
|
|
{% tablerow product in collection.products cols: 3 %}
|
|
<div class="gallery-image">
|
|
<a href="{{ product.url | within: collection }}" title="{{ product.title | escape }} — {{ product.description | strip_html | truncate: 50 | escape }}"><img src="{{ product.images.first | product_img_url: 'small' }}" alt="{{ product.title | escape }}" /></a>
|
|
</div>
|
|
<div class="gallery-info">
|
|
<a href="{{ product.url | within: collection }}">{{ product.title | truncate: 30 }}</a><br />
|
|
<small>{{ product.price | money }}{% if product.compare_at_price_max > product.price %} <del>{{ product.compare_at_price_max | money }}</del>{% endif %}</small>
|
|
</div>
|
|
{% endtablerow %}
|
|
</table>{% if paginate.pages > 1 %}
|
|
<div id="paginate">
|
|
{{ paginate | default_pagination }}
|
|
</div>{% endif %}{% endif %}
|
|
{% endpaginate %}
|