summaryrefslogtreecommitdiff
path: root/templates/blocks/picture.html
diff options
context:
space:
mode:
authorjoak <joak@nospace.at>2020-08-17 19:20:18 +0200
committerjoak <joak@nospace.at>2020-08-17 19:20:18 +0200
commit66d5bb150621e8d8b7b11e997b6a6a9afce8223e (patch)
treed0d806ae0443fd572fef7abca0bcdacb330fff8a /templates/blocks/picture.html
parentf60e9ccd5b046101903a79bf6afa0cf87fdd956c (diff)
update
Diffstat (limited to 'templates/blocks/picture.html')
-rw-r--r--templates/blocks/picture.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/templates/blocks/picture.html b/templates/blocks/picture.html
index a75eb3e..8008f92 100644
--- a/templates/blocks/picture.html
+++ b/templates/blocks/picture.html
@@ -1,2 +1,7 @@
-{% set img = record.attachments.images.get(this.url) %}
-<img id="{{ this.url|replace('.','') }}" class="bigimage" src="{{img.thumbnail(800)|url}}" alt="{{ this.caption }}">
+<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>