mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 16:09:52 +00:00
88f62cf0df
A macro named 'result_footer_rtl' does not exists. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
13 lines
707 B
HTML
13 lines
707 B
HTML
{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %}
|
|
|
|
{{ result_header(result, favicons, image_proxify) -}}
|
|
{{- result_sub_header(result) -}}
|
|
{%- if result.content %}{{ result.content|safe }}{% endif %}</p>
|
|
{%- if result.repository -%}
|
|
<p class="content"><a href="{{ result.repository|safe }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ result.repository }}</a></p>
|
|
{%- endif -%}
|
|
<div dir="ltr" class="codelines">
|
|
{{- result.codelines|code_highlighter(result.code_language)|safe -}}
|
|
</div>{{- '' -}}
|
|
{{- result_sub_footer(result, proxify) -}}
|
|
{{ result_footer(result) }}
|