mirror of
https://github.com/getzola/zola
synced 2024-12-15 14:52:28 +00:00
8 lines
263 B
HTML
8 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>
|
|
 
|
|
{%- endif %}
|
|
{%- endfor %}
|