diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/blocks/picture.html | 9 | ||||
-rw-r--r-- | templates/page.html | 3 |
2 files changed, 9 insertions, 3 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> diff --git a/templates/page.html b/templates/page.html index 5d9297d..f5fa458 100644 --- a/templates/page.html +++ b/templates/page.html @@ -10,8 +10,9 @@ {% if work.selected %} {{work.content.blocks._flowblock}} <span class="previews"> +<!-- <h1 class="starth1">{{work.title}}</h1> - +--> {% for item in work.content.blocks %} {% if item._flowblock == 'gallery' %} {% for i in item.gallery.blocks %} |