mirror of
https://github.com/searxng/searxng
synced 2024-11-03 09:40:20 +00:00
Template images.html: lazy by JS the full size image
Remove lazy loading by browser / width / height: JS is required to display this HTML fragment anyway. Simplify the HTML template.
This commit is contained in:
parent
f814ac703b
commit
0063427309
@ -9,11 +9,7 @@
|
|||||||
<a class="result-detail-previous" href="#">{{ icon('chevron-left') }}</a>{{- "" -}}
|
<a class="result-detail-previous" href="#">{{ icon('chevron-left') }}</a>{{- "" -}}
|
||||||
<a class="result-detail-next" href="#">{{ icon('chevron-right') }}</a>{{- "" -}}
|
<a class="result-detail-next" href="#">{{ icon('chevron-right') }}</a>{{- "" -}}
|
||||||
<a class="result-images-source" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} href="{{ result.img_src }}">
|
<a class="result-images-source" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} href="{{ result.img_src }}">
|
||||||
{%- if result.thumbnail_src -%}
|
<img src="" data-src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}">{{- "" -}}
|
||||||
<img src="" data-src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}">
|
|
||||||
{%- else -%}
|
|
||||||
<img src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}" loading="lazy" width="200" height="200">
|
|
||||||
{%- endif -%}
|
|
||||||
</a>{{- "" -}}
|
</a>{{- "" -}}
|
||||||
<div class="result-images-labels">{{- "" -}}
|
<div class="result-images-labels">{{- "" -}}
|
||||||
<h4>{{ result.title|striptags }}</h4>{{- "" -}}
|
<h4>{{ result.title|striptags }}</h4>{{- "" -}}
|
||||||
|
Loading…
Reference in New Issue
Block a user