2014-01-11 03:33:41 +00:00
|
|
|
<div class="result torrent_result">
|
2015-01-01 18:52:05 +00:00
|
|
|
{% if "icon_"~result.engine~".ico" in favicons %}
|
2015-01-09 03:05:39 +00:00
|
|
|
<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
|
2015-01-01 18:52:05 +00:00
|
|
|
{% endif %}
|
2016-09-04 13:56:46 +00:00
|
|
|
<h3 class="result_title"><a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ result.title|safe }}</a></h3>
|
2015-02-13 00:03:18 +00:00
|
|
|
<p class="url">{{ result.pretty_url }}‎</p>
|
2014-12-10 17:20:20 +00:00
|
|
|
{% if result.content %}<p class="content">{{ result.content|safe }}</p>{% endif %}
|
2015-01-15 00:48:46 +00:00
|
|
|
<p>
|
|
|
|
{% if result.magnetlink %}<a href="{{ result.magnetlink }}" class="magnetlink">{{ _('magnet link') }}</a>{% endif %}
|
2016-09-04 13:56:46 +00:00
|
|
|
{% if result.torrentfile %}<a href="{{ result.torrentfile }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="torrentfile">{{ _('torrent file') }}</a>{% endif %} -
|
2019-07-25 06:40:48 +00:00
|
|
|
{% if result.seed %}<span class="stats">{{ _('Seeder') }} : {{ result.seed }}, {{ _('Leecher') }} : {{ result.leech }}</span>{% endif %}
|
2015-01-15 00:48:46 +00:00
|
|
|
</p>
|
2014-01-11 03:33:41 +00:00
|
|
|
</div>
|