blob: 14b3a5eb8435e631dffb1ddf1bf9400c1135b98f (
plain)
1
2
3
4
5
6
7
8
9
|
{% if src is starting_with("/") %}
{% set img_src = src %}
{% else %}
{% set img_src = page.path ~ src %}
{% endif %}
<figure>
<img src="{{ img_src }}" alt="{{ alt }}" />
<figcaption aria-hidden="true">{{ alt }}</figcaption>
</figure>
|