blob: 8008f92aa11ac390d72469d7f01f3ea5fecec689 (
plain)
1
2
3
4
5
6
7
|
<div class="galleryImage">
{% set img = record.attachments.images.get(this.url) %}
<img id="{{ this.url|replace('.','') }}" class="bigimage" src="{{img.thumbnail(800)|url}}" alt="{{ this.caption }}">
{% if this.caption %}
<div class="caption">{{this.caption}}</div>
{% endif %}
</div>
|