diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-04 14:20:34 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-04 14:20:34 -0500 |
commit | e6501f415e599f303d21d23ad254241446725415 (patch) | |
tree | 999f92c5e7079bf861fc4191b7b81563432e5960 /design/templates/lib/img_blok.html | |
parent | 0421f46b80b4ee2e89328446b4b8dd44c7af033d (diff) |
fixed syntax errors in image templates
Diffstat (limited to 'design/templates/lib/img_blok.html')
-rw-r--r-- | design/templates/lib/img_blok.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/lib/img_blok.html b/design/templates/lib/img_blok.html index b7ed58b..2d0e947 100644 --- a/design/templates/lib/img_blok.html +++ b/design/templates/lib/img_blok.html @@ -2,7 +2,7 @@ {% if caption or exif or image.photo_credit_source %} <figure{%if not is_cluster %} class="blokwide"{%endif%}>{%else%}{%if not is_cluster %}<div class="blokwide">{%endif%}{%endif%} <a itemscope itemtype="http://schema.org/ImageObject" href="{%get_image_by_size image "original"%} " title="view larger image"> - <img class="u-photo" itemprop="contentUrl" sizes="(max-width: 1439px) 100vw, (min-width: 1440px) 1440px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.name %} {{size.width}}w{% if forloop.last%}"{%else%}, {%endif%}{%endfor%}{% for size in image.sizes.all%}{%if not forloop.first and not forloop.last%} src="{% get_image_by_size image size.name%}"{%endif%}{%endfor%} alt="{{image.alt}} photographed by {% if image.photo_credit_source %}{{image.photo_credit_source}}{%else%}luxagraf{%endif%}" data-jslghtbx="{%get_image_by_size image "original"%}" data-jslghtbx-group="group" {% if caption%}data-jslghtbx-caption="{{image.caption}}"{%endif%}> + <img class="u-photo" itemprop="contentUrl" sizes="(max-width: 1439px) 100vw, (min-width: 1440px) 1440px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.slug %} {{size.width}}w{% if forloop.last%}"{%else%}, {%endif%}{%endfor%}{% for size in image.sizes.all%}{%if not forloop.first and not forloop.last%} src="{% get_image_by_size image size.slug %}"{%endif%}{%endfor%} alt="{{image.alt}} photographed by {% if image.photo_credit_source %}{{image.photo_credit_source}}{%else%}luxagraf{%endif%}" data-jslghtbx="{%get_image_by_size image "original"%}" data-jslghtbx-group="group" {% if caption%}data-jslghtbx-caption="{{image.caption}}"{%endif%}> </a> {% if caption or exif or image.photo_credit_source %}<figcaption>{% endif %}{% if caption %}{{image.caption|safe}}{% endif %}{% if exif %} | <small>Camera: {{image.exif_make}} {{image.exif_model}} with {{image.exif_lens}}</small>{% endif %}{% if image.photo_credit_source %}{%if caption or exif %} | {%endif%}image by {% if image.photo_credit_url %}<a href="{{image.photo_credit_url}}" itemprop="author">{%endif%}{{image.photo_credit_source}}{% if image.photo_credit_url %}</a>{%endif%}{%endif%}{% if caption or exif or image.photo_credit_source %}</figcaption> </figure>{%else%}{%if not is_cluster %}</div>{%endif%} |