diff options
author | luxagraf <sng@luxagraf.net> | 2018-05-25 13:42:41 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-05-25 13:42:41 -0400 |
commit | 8eb8f243025056092b9db646b8cf1e8d20b33549 (patch) | |
tree | 95600f07037e991764b213f798c9dd4fa9c7a404 /design/templates | |
parent | cbef1c249a6a66ffd7c9a7796a1002a48c14a9f2 (diff) |
added correct image class for 960 wide images
Diffstat (limited to 'design/templates')
-rw-r--r-- | design/templates/lib/img_pic960.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/lib/img_pic960.html b/design/templates/lib/img_pic960.html index 04f098c..544e42e 100644 --- a/design/templates/lib/img_pic960.html +++ b/design/templates/lib/img_pic960.html @@ -2,7 +2,7 @@ {% load get_image_width %} {% if caption %} <figure class="pic960">{%endif%} -<a href="{%get_image_by_size image "original"%} " title="view larger image"><img class="picfull" sizes="(max-width: 960px) 100vw, (min-width: 961px) 960px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.name %} {% if image.is_portait %}{% get_image_width image size.height %}w{%else%}{{size.width}}w{%endif%}{% if forloop.last%}"{%else%}, {%endif%}{%endfor%} +<a href="{%get_image_by_size image "original"%} " title="view larger image"><img class="picwide960" sizes="(max-width: 960px) 100vw, (min-width: 961px) 960px" srcset="{% for size in image.sizes.all%}{% get_image_by_size image size.name %} {% if image.is_portait %}{% get_image_width image size.height %}w{%else%}{{size.width}}w{%endif%}{% 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> |