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.

gallery.html 263B

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