zola/docs/templates/shortcodes/gallery.html
2018-12-28 01:41:22 +01:00

9 lines
300 B
HTML

{% for asset in page.assets -%}
{%- if asset is matching("[.](jpg|png)$") -%}
<a href="{{ get_url(path=asset) | safe }}" target="_blank">
<img src="{{ resize_image(path=asset, width=240, height=180, op="fill", format="auto") | safe }}" />
</a>
&ensp;
{%- endif %}
{%- endfor %}