block-image-cover.html 636 B

123456789101112
  1. <figure class="psr">
  2. <img src="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('main', block.info.width, doc.meta.path, size=2, size_attr=False) }}"
  3. srcset="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('main', block.info.width, doc.meta.path) }}"
  4. sizes="(max-width: 1919px) 100vw, 75vw"
  5. alt="{{ block.url }}"
  6. width="{{ block.info.width }}"
  7. height="{{ block.info.height }}"
  8. >
  9. {% if block.caption %}
  10. <figcaption class="psa t50 l50 ttcc fs-large fgc-cyan ff-sans bgc-blackest">{{ block.caption | md | safe }}</figcaption>
  11. {% endif %}
  12. </figure>