forked from zaclys/searxng
		
	 fd374d6322
			
		
	
	
		fd374d6322
		
	
	
	
	
		
			
			When an image is selected, the detail with the full size image is displayed on the right side of the screen (or full screen on tablet and phone). When Javascript is disabled, the thumbnail is a linked to the full size image, as it was before. When the image proxy is enabled, the full size image is also proxied, in consequence this commit increases the bandwidth usage of instances. The detail can be closed by the close button or the Esc key. It is possible to go to the next and previous images using the j and k keys or the button on the top right of the screen.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <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 }}" />{{- "" -}}
 | |
|                 <span class="title">{{ result.title|striptags }}</span>{{- "" -}}
 | |
|         </a>{{- "" -}}
 | |
|         <div class="detail">{{- "" -}}
 | |
|                 <a class="result-detail-close" href="#">{{ icon('close') }}</a>{{- "" -}}
 | |
|                 <a class="result-detail-previous" href="#">{{ icon_small('chevron-left') }}</a>{{- "" -}}
 | |
|                 <a class="result-detail-next" href="#">{{ icon_small('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 }}">
 | |
|                         {%- if result.thumbnail_src -%}
 | |
|                                 <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">
 | |
|                         {%- endif -%}
 | |
|                 </a>{{- "" -}}
 | |
|                 <div class="result-images-labels">{{- "" -}}
 | |
|                         <h4>{{ result.title|striptags }}</h4>{{- "" -}}
 | |
|                         <p class="result-content">{%- if result.content %}{{ result.content|striptags }}{% else %} {% endif -%}</p>{{- "" -}}
 | |
|                         <hr>{{- "" -}}
 | |
|                         <p class="result-author">{%- if result.author %}<span>{{ _('Author') }}:</span>{{ result.author|striptags }}{% else %} {% endif -%}</p>{{- "" -}}
 | |
|                         <p class="result-format">{%- if result.img_format %}<span>{{ _('Format') }}:</span>{{ result.img_format }}{% else %} {% endif -%}</p>{{- "" -}}
 | |
|                         <p class="result-source">{%- if result.source %}<span>{{ _('Source') }}:</span>{{ result.source }}{% else %} {% endif -%}</p>{{- "" -}}
 | |
|                         <p class="result-engine"><span>{{ _('Engine') }}:</span>{{ result.engine }}</p>{{- "" -}}{{- "" -}}
 | |
|                         <p class="result-url"><span>{{ _('View source') }}:</span><a {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} href="{{ result.url }}">{{ result.url }}</a></p>{{- "" -}}
 | |
|                 </div>{{- "" -}}
 | |
|         </div>{{- "" -}}
 | |
| </article>
 |