2014-12-22 15:07:02 +00:00
|
|
|
{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, icon %}
|
2014-12-20 22:33:03 +00:00
|
|
|
|
2014-12-22 15:07:02 +00:00
|
|
|
{{ result_header(result) }}
|
|
|
|
{{ result_sub_header(result) }}
|
2014-12-20 22:33:03 +00: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 }}
|
|
|
|
|
2014-12-22 15:07:02 +00:00
|
|
|
{{ result_footer(result) }}
|