1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-18 03:00:22 +02:00
searxng/searx/templates/oscar/result_templates/code.html

13 lines
517 B
HTML
Raw Normal View History

{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, icon %}
2014-12-20 23:33:03 +01:00
{{ result_header(result, favicons) }}
{{ result_sub_header(result) }}
2014-12-20 23:33:03 +01:00
{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
{% if result.repository %}<p class="result-content">{{ icon('file') }} <a href="{{ result.repository|safe }}">{{ result.repository }}</a></p>{% endif %}
{{ result.codelines|code_highlighter(result.code_language)|safe }}
{{ result_footer(result) }}