jessite/themes/terminette/templates/shortcodes/figure.html
Jessica Canady 89b73b5413
Just add the theme straight to this repo.
It can be open-sourced in a way better way than having to edit it, push,
then clone. That workflow is just *ugh.*
2024-04-16 13:38:58 -04:00

9 lines
496 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 %} />
{% 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 %}