mirror of
https://github.com/searxng/searxng
synced 2024-11-01 15:40:29 +00:00
14 lines
726 B
HTML
14 lines
726 B
HTML
{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl 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) }}
|