website/templates/shortcodes/figure.html
2026-03-17 11:06:46 +01:00

15 lines
524 B
HTML

<figure>
<img src="{{ src }}" {% if alt %}alt="{{ alt }}"{% endif %} {% if first %} fetchpriority="high" decoding="async" {%
else %} loading="lazy" decoding="async" {% endif %}>
{% if caption or alt %}
<figcaption>
<p>
{% if caption %}
{{ caption }}
{% elif alt %}
{{ alt }}
{% endif %}
</p>
</figcaption>
{% endif %}
</figure>