summaryrefslogtreecommitdiff
path: root/templates/lib/img_picwide.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-12-10 08:49:06 -0600
committerluxagraf <sng@luxagraf.net>2022-12-10 08:49:06 -0600
commitfb8331ac64382d53fa16a252a38170e91fa95ad5 (patch)
tree43e5348c4cae3b6a32be38dad40755734dfe4d02 /templates/lib/img_picwide.html
parent3ca2b93cac5687a2b1e571ec2f30d5ceb4f3854b (diff)
jrnl: added id to images so I can link to them.
Diffstat (limited to 'templates/lib/img_picwide.html')
-rw-r--r--templates/lib/img_picwide.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/lib/img_picwide.html b/templates/lib/img_picwide.html
index 9f98020..050729e 100644
--- a/templates/lib/img_picwide.html
+++ b/templates/lib/img_picwide.html
@@ -1,4 +1,4 @@
-{% load get_image_by_size %}{% if caption or exif or image.photo_credit_source %}<figure{%if not is_cluster %} class="picwide"{%endif%}>{%else%}{%if not is_cluster %}<div class="picwide">{%endif%}{%endif%}
+{% load get_image_by_size %}{% if caption or exif or image.photo_credit_source %}<figure{%if not is_cluster %} class="picwide" id="{{image.id}}"{%endif%}>{%else%}{%if not is_cluster %}<div class="picwide" id="{{image.id}}">{%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.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>