zola-theme-terminimal/templates/shortcodes/figure.html

9 lines
527 B
HTML
Raw Permalink Normal View History

2019-02-05 19:27:02 +01:00
{% if src %}
<figure class="{% if position %}{{ position }}{% else -%} center {%- endif %}" >
<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 %}