club-builder/templates/blocks/full_width_image.html

15 lines
454 B
HTML

<section class="block block-full-width-image"
style="
--fade-speed: {{ block.fade_speed or '0.8s' }};
--vignette-strength: {{ block.vignette_strength or '0.75' }};
">
<figure class="cd-figure">
{% if block.src %}
<img src="{{ block.src }}" alt="{{ block.alt or '' }}">
{% endif %}
{% if block.caption %}
<figcaption>{{ block.caption }}</figcaption>
{% endif %}
</figure>
</section>