mirror of
https://github.com/searxng/searxng.git
synced 2024-11-13 21:51:08 +00:00
12 lines
564 B
HTML
12 lines
564 B
HTML
{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, icon %}
|
|
|
|
{{ result_header(result) }}
|
|
{{ result_sub_header(result) }}
|
|
|
|
<p class="result-content">{{ icon('transfer') }} {{ _('Seeder') }} <span class="badge">{{ result.seed }}</span>, {{ _('Leecher') }} <span class="badge">{{ result.leech }}</span>
|
|
<br/>
|
|
<a href="{{ result.magnetlink }}" class="magnetlink">{{ icon('magnet') }} magnet link</a></p>
|
|
|
|
{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
|
|
|
|
{{ result_footer(result) }}
|