block-image.html 701 B

123456789101112
  1. <figure class="psr {% if not block_last %}bdb-gray {% endif %}{% if img_hide %} dn md-db{% endif %}">
  2. <img src="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('product', block.info.width, doc.meta.path, size=2, size_attr=False) }}"
  3. srcset="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('product', block.info.width, doc.meta.path) }}"
  4. sizes="(max-width: 759px) 100vw, 50vw"
  5. alt="{{ block.url }}"
  6. width="{{ block.info.width }}"
  7. height="{{ block.info.height }}"
  8. >
  9. {% if block.caption %}
  10. <figcaption class="psa b0 l0 fs-big pt0-5 pr0-5 pb0-5 pl0-5 bgc-blackest">{{ block.caption }}</figcaption>
  11. {% endif %}
  12. </figure>