mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-01-09 20:21:06 +01:00
bef4cc9020
Zola v0.18 added an option to set all images with `decoding=async` and `load=lazy`, but this only applies to `<img>` tags generated from Markdown `![]()` syntax. This patch adds these attributes by default to `figure` and `image` macros.
9 lines
476 B
HTML
9 lines
476 B
HTML
{% if src %}
|
|
{# If the image's URL is internal to the site... #}
|
|
{% if src is not starting_with("http") %}
|
|
{# ... then prepend the site's base URL to the image's URL. #}
|
|
{% set src = config.base_url ~ src %}
|
|
{% endif %}
|
|
<img src="{{ src | safe }}"{% if alt %} alt="{{ alt }}"{% endif %} class="{% if position %}{{ position }}{% else -%} center {%- endif %}" {%- if style %} style="{{ style | safe }}" {%- endif %} decoding="async" loading="lazy"/>
|
|
{% endif %}
|