collections
店铺中所有的 collections。
遍历 collections
您可以遍历 collections 来构建 collection 列表。
{% for collection in collections %}
{{ collection.title | link_to: collection.url }}
{% endfor %}
<a href="/collections/all-collections">All Collections</a>
<a href="/collections/collection-2">Collection - 2</a>
<a href="/collections/new-boy">New Boy</a>
访问特定 collection
您可以使用 collections 通过其 id 访问某个 collection。
{% assign collection = collections[collection.id] %}
{% for product in collection.products %}
{{ product.title | link_to: product.url }}
{% endfor %}
<a href="/products/ace-cashmere-beanie">Ace Cashmere Beanie</a>
<a href="/products/haldon-cashmere-crew">Haldon Cashmere Crew</a>
<a href="/products/lace-up-leather-manston-runner">Lace-up Leather Manston Runner</a>