awebsite/templates/shortcodes/gallery.html

10 lines
293 B
HTML
Raw Normal View History

2025-05-01 03:20:23 +02:00
<div>
{% for asset in page.assets -%}
{%- if asset is matching("[.](jpg|png)$") -%}
{% set image = resize_image(path=asset, width=240, height=180) %}
<a href="{{ get_url(path=asset) }}" target="_blank">
<img src="{{ image.url }}" />
</a>
{%- endif %}
{%- endfor %}
</div>