ParkerTenBroeck.github.io/templates/macros/image.html
Parker TenBroeck 458a6ced12 updated QTip
2026-01-18 19:11:54 -05:00

8 lines
No EOL
243 B
HTML

{% macro figure(src, caption="", class="") %}
<figure class="image {{ class }}">
<img src="{{ src }}" loading="lazy" decoding="async">
{% if caption != "" %}
<figcaption>{{ caption }}</figcaption>
{% endif %}
</figure>
{% endmacro %}