Untitled

 avatar
unknown
plain_text
5 months ago
274 B
1
Indexable
{% for product in products %}
  <div class="product-item">
    <a href="{{ product.url }}">
      <img src="{{ product.images.first.url }}" alt="{{ product.title }}">
    </a>
    <h3>{{ product.title | bestseller }}</h3>
    <p>{{ product.price }}</p>
  </div>
{% endfor %}
Editor is loading...
Leave a Comment