webbed-site/templates/shortcodes/gallery.html

10 lines
321 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)$") -%}
{% set image = resize_image(path=asset, width=350, height=350) %}
<a href="{{ get_url(path=asset) }}" target="_blank">
<img src="{{ image.url }}" />
</a>
{%- endif %}
{%- endfor %}
</div>