zola/docs/templates/shortcodes/gallery.html
2018-12-03 17:27:28 +01:00

9 lines
263 B
HTML

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