lazy loading

This commit is contained in:
2024-07-15 12:07:33 +01:00
parent d5c3aaacbf
commit 67891735bb
2 changed files with 77 additions and 77 deletions

View File

@@ -5,7 +5,7 @@
<div id="image-gallery">
<div class="image-container"></div>
{% for image in images %}
<img class="gallery-image" src="{{ image }}">
<img class="gallery-image" src="{{ image }}" loading="lazy">
{% endfor %}
<div class="image-container"></div>
</div>