webbed-site/templates/shortcodes/gallery.html

10 lines
323 B
HTML
Raw Normal View History

2024-09-13 20:20:08 -05:00
<div style="text-align: center;">
{% for asset in page.assets -%}
{%- if asset is matching("[.](jpg|png|gif)$") -%}
2024-09-13 20:20:08 -05:00
{% set image = resize_image(path=asset, width=350, height=350) %}
<a href="{{ get_url(path=asset) }}" target="_blank">
2024-09-13 23:41:43 -05:00
<img src="{{ image.url }}">
2024-09-13 20:20:08 -05:00
</a>
{%- endif %}
{%- endfor %}
</div>