How to display images of a location
Display the small version of all images of a location
{% for image in location.images %}
<img src="{{ image.small }}" alt="{{ image.alt }}">
{% endfor %}
Size of images
- original: Original uploaded image.
- thumb: exactly 100x100px distorting the image if necessary.
- small: max. 512x512px keeping the original aspect ratio.
- square: exactly 512x512px distorting the image if necessary.
- landscape: exactly 1600x500px (16:9 proportion) distorting the image if necessary.