2024-09-13 20:20:08 -05:00
|
|
|
<div style="text-align: center;">
|
|
|
|
{% for asset in page.assets -%}
|
2024-09-23 12:51:49 -05:00
|
|
|
{%- 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>
|