2014-08-18 08:44:46 +00:00
|
|
|
<div class="result torrent_result">
|
2015-01-15 23:56:54 +00:00
|
|
|
{% if "icon_"~result.engine~".ico" in favicons %}
|
|
|
|
<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
|
|
|
|
{% 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-01-15 23:56:54 +00:00
|
|
|
{% if result.content %}<span class="content">{{ result.content|safe }}</span><br />{% endif %}
|
|
|
|
<span class="stats">{{ _('Seeder') }} : {{ result.seed }}, {{ _('Leecher') }} : {{ result.leech }}</span><br />
|
|
|
|
<span>
|
|
|
|
{% 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 }}" class="torrentfile" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ _('torrent file') }}</a>{% endif %}
|
2015-01-15 23:56:54 +00:00
|
|
|
</span>
|
2015-02-13 00:03:18 +00:00
|
|
|
<p class="url">{{ result.pretty_url }}‎</p>
|
2015-04-26 13:32:26 +00:00
|
|
|
</div>
|