diff options
author | Bnyro <bnyro@tutanota.com> | 2024-02-21 19:05:54 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-02-25 16:22:37 +0100 |
commit | db1f9b31c9063c983560d2e5c24aad61a4ef87c8 (patch) | |
tree | e5828385c98bdb94449730bfee81cdd62e80f1b3 /searx/templates | |
parent | e76ab1a4b3a99b0ec2ef90c3aadc92ffbf6889b1 (diff) | |
download | searxng-db1f9b31c9063c983560d2e5c24aad61a4ef87c8.tar.gz searxng-db1f9b31c9063c983560d2e5c24aad61a4ef87c8.zip |
[feat] images: show resolution inside the image and fix image details overflow
Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/simple/result_templates/images.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/searx/templates/simple/result_templates/images.html b/searx/templates/simple/result_templates/images.html index 0462588be..ff62457ec 100644 --- a/searx/templates/simple/result_templates/images.html +++ b/searx/templates/simple/result_templates/images.html @@ -1,11 +1,9 @@ <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" {% 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 %}" alt="{{ result.title|striptags }}" loading="lazy" width="200" height="200">{{- "" -}} - <span class="title">{{ result.title|striptags }}</span>{{- "" -}} - <span class="source"> - {{- result.parsed_url.netloc -}} - {%- if result.resolution %} - {{ result.resolution }}{%- endif -%} - </span>{{- "" -}} + {%- if result.resolution %} <span class="image_resolution">{{ result.resolution }}</span> {%- endif -%} + <span class="title">{{ result.title|striptags }}</span>{{- "" -}} + <span class="source">{{- result.parsed_url.netloc -}}</span>{{- "" -}} </a>{{- "" -}} <div class="detail">{{- "" -}} <a class="result-detail-close" href="#">{{ icon('close') }}</a>{{- "" -}} |