mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-06 21:14:06 -04:00
8 lines
No EOL
243 B
HTML
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 %} |