Spring Days
A collection page of Roble.Store
About
-15% en Camas, Mesitas, Muebles TV, Consolas y Zapateros con el codigo SPRING15 hasta el 11 de Mayo { "@context": "https://schema.org", "@type": "CollectionPage", "@id": "{{shop.url}}{{ collection.url }}#collectionpage", "name": {{ collection.title | strip_html | json }}, "description": {{ collection.description | strip_html | truncate: 300 | json }}, "url": "{{ shop.url }}{{ collection.url }}", "inLanguage": "{{ request.locale.iso_code }}", "isPartOf": { "@id": "https://roble.store/#website" }, "breadcrumb": { "@id": "{{ shop.url }}{{ collection.url }}#breadcrumb" }, "mainEntity": { "@type": "ItemList", "@id": "{{ shop.url }}{{ collection.url }}#itemlist", "numberOfItems": {{ collection.products_count }}, "itemListElement": [ {%- for product in collection.products limit: 24 -%} { "@type": "ListItem", "position": {{ forloop.index }}, "item": { "@type": "Product", "@id": "{{ shop.url }}{{ product.url }}#product", "name": {{ product.title | strip_html | json }}, "image": "{{ product.featured_image | image_url: width: 1200 }}", "description": {{ product.description | strip_html | truncate: 300 | json }}, "url": "{{ shop.url }}{{ product.url }}", "sku": "{{ product.selected_or_first_available_variant.sku }}", "offers": { "@type": "Offer", "priceCurrency": "{{ cart.currency.iso_code }}", "price": "{{ product.price | divided_by: 100.0 }}", "availability": "{% if product.available %}https://schema.org/InStock{% else %}https://schema.org/OutOfStock{% endif %}", "url": "{{ shop.url }}{{ product.url }}", "seller": { "@id": "https://roble.store/#organization" } } } }{% unless forloop.last %},{% endunless %} {%- endfor -%} ] } }