You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
289B

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