mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 05:58:36 -05:00
9 lines
527 B
HTML
9 lines
527 B
HTML
![]() |
{% 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"/>
|
||
|
{% if caption %}
|
||
|
<figcaption class="{% if caption_position %}{{ caption_position }}{% else -%} center {%- endif %}"{% if caption_style %} style="{{ caption_style | safe }}"{% endif %}>{{ caption | markdown() | safe }}</figcaption>
|
||
|
{% endif %}
|
||
|
</figure>
|
||
|
{% endif %}
|