forked from Archives/searxng
56b7e05721
Adding a CR in some files and in others not, is a good starting point for a DOS+Unix mess we all have already seen in many projects. Patch fixes all files matching (even those comming from grunt's build):: find ./searx -exec file {} \; | grep CR BTW: Same with mixing TAB and SPACE indent styles in one and the same file. So if sources are tuched here in this patch, its also fixed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %}
|
|
|
|
{{ result_header(result, favicons) }}
|
|
{{ result_sub_header(result) }}
|
|
|
|
{% if result.embedded %}
|
|
<small> • <a class="text-info btn-collapse collapsed cursor-pointer media-loader disabled_if_nojs" data-toggle="collapse" data-target="#result-video-{{ index }}" data-btn-text-collapsed="{{ _('show video') }}" data-btn-text-not-collapsed="{{ _('hide video') }}">{{ icon('film') }} {{ _('show video') }}</a></small>
|
|
{% endif %}
|
|
|
|
{% if result.embedded %}
|
|
<div id="result-video-{{ index }}" class="collapse">
|
|
{{ result.embedded|safe }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><img class="thumbnail col-xs-6 col-sm-4 col-md-4 result-content" src="{{ image_proxify(result.thumbnail) }}" alt="{{ result.title|striptags }} {{ result.engine }}" /></a>
|
|
{% if result.content %}<p class="col-xs-12 col-sm-8 col-md-8 result-content">{{ result.content|safe }}</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% if rtl %}
|
|
{{ result_footer_rtl(result) }}
|
|
{% else %}
|
|
{{ result_footer(result) }}
|
|
{% endif %}
|