site/templates/shortcodes/img.html

11 lines
216 B
HTML

<figure>
<img src="{{ src }}"
{% if alt %}
alt="{{ alt }}"
{% else %}
alt="{{ body | safe }}"
{% endif %}
>
<figcaption>{{ body | markdown(inline=true) | safe }}</figcaption>
</figure>