2019-02-05 19:27:02 +01:00
|
|
|
{% if src %}
|
|
|
|
<figure class="{% if position %}{{ position }}{% else -%} center {%- endif %}" >
|
2024-02-06 19:31:27 +01:00
|
|
|
<img src="{{ src | safe }}"{% if alt %} alt="{{ alt }}"{% endif %}{% if style %} style="{{ style }}"{% endif %} decoding="async" loading="lazy"/>
|
2019-02-05 19:27:02 +01:00
|
|
|
{% if caption %}
|
2023-07-31 18:27:33 +02:00
|
|
|
<figcaption class="{% if caption_position %}{{ caption_position }}{% else -%} center {%- endif %}"{% if caption_style %} style="{{ caption_style | safe }}"{% endif %}>{{ caption | markdown() | safe }}</figcaption>
|
2019-02-05 19:27:02 +01:00
|
|
|
{% endif %}
|
|
|
|
</figure>
|
|
|
|
{% endif %}
|