summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-11 12:39:58 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-11 12:39:58 +0100
commit00584d77c878333d1b677fda097b85941467f13d (patch)
treea7f98e11f00331e3b51298bcd2b147cca456b850 /searx
parentfa6f430f2ed684b1deaba08b4ffb38349254abf8 (diff)
downloadsearxng-00584d77c878333d1b677fda097b85941467f13d.tar.gz
searxng-00584d77c878333d1b677fda097b85941467f13d.zip
[fix] newlines
Diffstat (limited to 'searx')
-rw-r--r--searx/templates/result_templates/torrent.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/result_templates/torrent.html b/searx/templates/result_templates/torrent.html
index 4b7cfbf2a..6c62793a5 100644
--- a/searx/templates/result_templates/torrent.html
+++ b/searx/templates/result_templates/torrent.html
@@ -1,6 +1,6 @@
<div class="result torrent_result">
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
- <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
+ {% if result.content %}<p class="content">{{ result.content|safe }}</p>{% endif %}
<p class="stats">Seed: {{ result.seed }}, Leech: {{ result.leech }}</p>
<p><a href="{{ result.magnetlink }}" class="magnetlink">magnet link</a></p>
<p class="url">{{ result.pretty_url }}</p>