summaryrefslogtreecommitdiff
path: root/design/templates/lib/img_picfull.html
blob: b58b3cf929e2314dbca2413681c12eba50024019 (plain)
1
2
3
4
5
6
7
8
{% 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%}
   {% 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>
{% endif %}