diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-11-05 12:39:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-05 12:39:34 +0100 |
| commit | 57421c4b20ffbeaf0f5e54226efa4bed07149722 (patch) | |
| tree | bde98f5ccf681fb223386c3c599c4d39260d3a30 /searx/templates/simple/result_templates/images.html | |
| parent | 5b53d5cbd51a8207542420d830085ece2a97a74e (diff) | |
| parent | 3167d645e8dd0e9a85e997888ecf543ddea367a8 (diff) | |
Merge pull request #479 from dalf/simple-fix-open-new-tab
[fix] simple theme: fix open in a new tab preference
Diffstat (limited to 'searx/templates/simple/result_templates/images.html')
| -rw-r--r-- | searx/templates/simple/result_templates/images.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/result_templates/images.html b/searx/templates/simple/result_templates/images.html index 0f3069c98..f905cd6d7 100644 --- a/searx/templates/simple/result_templates/images.html +++ b/searx/templates/simple/result_templates/images.html @@ -1,6 +1,6 @@ <article class="result result-images {% if result['category'] %}category-{{ result['category'] }}{% endif %}">{{- "" -}} <a {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} href="{{ result.img_src }}">{{- "" -}} - <img class="image_thumbnail" src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" loading="lazy" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}" />{{- "" -}} + <img class="image_thumbnail" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" loading="lazy" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/>{{- "" -}} <span class="title">{{ result.title|striptags }}</span>{{- "" -}} </a>{{- "" -}} <div class="detail">{{- "" -}} |