diff options
author | luxagraf <sng@luxagraf.net> | 2017-01-01 14:56:21 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-01-01 14:56:21 -0500 |
commit | 87d7d8994805d1f64543c44efaac62038b0c55dd (patch) | |
tree | 919339aa45287d28de905b2a01ef6be823c3966b | |
parent | 436b0115874d82abc7e14ecbfbdd6bcad7dd2bc0 (diff) |
fixed a bug in picfull template
-rw-r--r-- | design/templates/lib/img_picfull.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/lib/img_picfull.html b/design/templates/lib/img_picfull.html index b58b3cf..dd5137d 100644 --- a/design/templates/lib/img_picfull.html +++ b/design/templates/lib/img_picfull.html @@ -1,7 +1,7 @@ {% load get_image_by_size %} {% if caption %} <figure class="picfull">{%endif%} -<a href="{%get_image_by_size image "original"%} " title="view larger image"><img class="picfull" sizes="(max-width: 680px) 100vw, (min-width: 681) 680px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.name %} {{size.long_edge}}w{% if forloop.last%}"{%else%}, {%endif%}{%endfor%} + <a href="{%get_image_by_size image "original"%} " title="view larger image"><img class="picfull" sizes="(max-width: 680px) 100vw, (min-width: 681) 680px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.name %} {% if size.height > size.width %}{{size.height}}{%else%}{{size.width}}w{% if forloop.last%}"{%else%}, {%endif%}{%endfor%} {% for size in image.sizes.all%}{%if forloop.first %} 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%}></a> {% if caption %}<figcaption>{{image.caption|safe}}</figcaption> </figure> |