mirror of
https://github.com/searxng/searxng.git
synced 2026-09-23 06:36:12 +00:00
Deletes thumbnails instead of showing an error image and also moves them to the right side. Also gives them a background and makes them into rounded 4:3 rectangles for better ui.
25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
{% from 'simple/macros.html' import iframe, result_header, result_sub_header, result_sub_footer, result_footer, result_thumbnail with context %}
|
|
|
|
{{ result_header(result, favicons, image_proxify, thumbnail=False) }}
|
|
{{ result_sub_header(result) }}
|
|
{% if result.iframe_src -%}
|
|
<p class="altlink"> <a class="btn-collapse collapsed media-loader disabled_if_nojs" data-target="#result-video-{{ index }}" data-btn-text-collapsed="{{ _('show video') }}" data-btn-text-not-collapsed="{{ _('hide video') }}">{{ icon_small('film') }} {{ _('show video') }}</a></p>
|
|
{%- endif %}
|
|
{{ result_thumbnail(result, image_proxify) }}
|
|
{%- if result.content %}
|
|
<p class="content">
|
|
{{ result.content|safe }}
|
|
</p>
|
|
{%- else %}
|
|
<p class="content empty_element">
|
|
{{ _('This site did not provide any description.')|safe }}
|
|
</p>
|
|
{% endif -%}
|
|
{{- result_sub_footer(result) -}}
|
|
{% if result.iframe_src -%}
|
|
<div id="result-video-{{ index }}" class="embedded-video invisible">
|
|
{{ iframe(result.iframe_src) }}
|
|
</div>
|
|
{%- endif %}
|
|
{{ result_footer(result) }}
|