summary refs log tree commit diff stats
path: root/src/themes/serene/templates/shortcodes/figure.html
blob: 8a4123f2cd6ad8040293c5f69a0633928f3f7f4a (plain) (blame)
1
2
3
4
5
6
7
8
<figure>
    <img src="{{ src }}" {% if alt %} alt="{{ alt }}"{% endif %}>
    {% if via %}
    <figcaption><a href="{{via}}">via</a></figcaption>
    {% else %}
    <figcaption>{{ caption }}</figcaption>
    {% endif %}
</figure>