Lazy load images

This commit is contained in:
spikecodes 2021-09-06 12:02:52 -07:00
parent 6f88fdfc75
commit 52a1b45014
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
7 changed files with 89 additions and 92 deletions

View file

@ -63,7 +63,7 @@
xmlns="http://www.w3.org/2000/svg">
<image width="100%" height="100%" href="{{ post.media.url }}"/>
<desc>
<img alt="Post image" src="{{ post.media.url }}"/>
<img loading="lazy" alt="Post image" src="{{ post.media.url }}"/>
</desc>
</svg>
</a>
@ -83,7 +83,7 @@
<div class="gallery">
{% for image in post.gallery -%}
<figure>
<a href="{{ image.url }}" ><img alt="Gallery image" src="{{ image.url }}"/></a>
<a href="{{ image.url }}" ><img loading="lazy" alt="Gallery image" src="{{ image.url }}"/></a>
<figcaption>
<p>{{ image.caption }}</p>
{% if image.outbound_url.len() > 0 %}