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 244B

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