mirror of
https://github.com/friendica/friendica
synced 2024-11-18 08:23:53 +00:00
Merge pull request #13490 from FarisKarim/fix_13486
add lazy loading for images
This commit is contained in:
commit
3c20ffc22b
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
{{if $image.preview}}
|
{{if $image.preview}}
|
||||||
<a data-fancybox="{{$image.uri_id}}" href="{{$image.attachment.url}}"><img src="{{$image.preview}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}"></a>
|
<a data-fancybox="{{$image.uri_id}}" href="{{$image.attachment.url}}"><img src="{{$image.preview}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}" loading="lazy"></a>
|
||||||
{{else}}
|
{{else}}
|
||||||
<img src="{{$image.src}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}">
|
<img src="{{$image.src}}" alt="{{$image.attachment.description}}" title="{{$image.attachment.description}}" loading="lazy">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in a new issue