From 74ca542a0282e269c991cc75511ccc76a7c8901c Mon Sep 17 00:00:00 2001 From: rhapsodhy Date: Sat, 11 Jan 2014 03:31:54 +0000 Subject: [enh] set up special css classes for highlighting results + highlight definitions with dark grey border --- searx/templates/result_templates/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'searx/templates') diff --git a/searx/templates/result_templates/default.html b/searx/templates/result_templates/default.html index 27cf57528..48c0775ae 100644 --- a/searx/templates/result_templates/default.html +++ b/searx/templates/result_templates/default.html @@ -1,4 +1,4 @@ -
+

{{ result.title|safe }}

{% if result.content %}{{ result.content|safe }}
{% endif %}

{{ result.pretty_url }}

-- cgit v1.2.3 From b0a440421772c334b090f89187b747a350d31e5a Mon Sep 17 00:00:00 2001 From: rhapsodhy Date: Sat, 11 Jan 2014 03:33:41 +0000 Subject: [enh] highlight piratebay results with light grey border, and indent peers+magnet link --- searx/templates/result_templates/torrent.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 searx/templates/result_templates/torrent.html (limited to 'searx/templates') diff --git a/searx/templates/result_templates/torrent.html b/searx/templates/result_templates/torrent.html new file mode 100644 index 000000000..4b7cfbf2a --- /dev/null +++ b/searx/templates/result_templates/torrent.html @@ -0,0 +1,7 @@ +
+

{{ result.title|safe }}

+

{% if result.content %}{{ result.content|safe }}
{% endif %}

+

Seed: {{ result.seed }}, Leech: {{ result.leech }}

+

magnet link

+

{{ result.pretty_url }}

+
-- cgit v1.2.3