a zola theme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
459 B

{# {{ gallery(images=[], cols=2, caption="") }} #}
{% if not cols %}
{% set cols = 2 %}
{% endif %}
<figure>
<div class="gallery{{cols}}">
{% for image in images %}
{% set url = image | first %}
{% set alt = image | last %}
<img src="{{ get_url(path=url) }}" alt="{{ alt }}" title="{{ alt }}">
{% endfor %}
</div>
{% if caption %}<figcaption>{{ caption }}</figcaption>{% endif %}
</figure>