grid-product.html 844 B

12345678910111213
  1. <a href="/{{ product.meta.path }}" class="related-products-child x" id="{{ product.meta.title | slugify }}">
  2. <figure class="psr x x1">
  3. <img src="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('product-grid', block.info.width, product.meta.path, size=4, size_attr=False) }}"
  4. srcset="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('product-grid', block.info.width, product.meta.path) }}"
  5. sizes="(max-width: 759px) 50vw, (max-width: 2879px) 25vw, 20vw"
  6. alt="{{ product.meta.title }}"
  7. width="{{ block.info.width }}"
  8. height="{{ block.info.height }}"
  9. class="x1"
  10. >
  11. <figcaption class="psa b0 l0 bgc-blackest pt0-25 pr0-25 pb0-25 pl0-25 lg-pt0-42 lg-pr0-42 lg-pb0-42 lg-pl0-42">{{ product.meta.title }} {{ product.meta.price }}{{ cart.meta.currency }}</figcaption>
  12. </figure>
  13. </a>