summaryrefslogtreecommitdiff
path: root/searx/templates/result_templates/default.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-19 22:58:50 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-19 22:58:50 +0100
commit4f4cb1caca37c28cd8a8e58e259d41569d3290a7 (patch)
tree9966f947e19664667cdeefcfd26abfbc4a451da4 /searx/templates/result_templates/default.html
parentbfdd6ebb9292f544736ed264a8d8ab04ca8d0296 (diff)
[enh] results favico handling
Diffstat (limited to 'searx/templates/result_templates/default.html')
-rw-r--r--searx/templates/result_templates/default.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/searx/templates/result_templates/default.html b/searx/templates/result_templates/default.html
index ab6d469b4..d06a4598a 100644
--- a/searx/templates/result_templates/default.html
+++ b/searx/templates/result_templates/default.html
@@ -1,13 +1,11 @@
<div class="result {{ result.class }}">
{% if result['favicon'] %}
- <div style="float:left; margin:2px;">
- <img width="18" height="18" src="static/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}.ico" title="{{result['favicon']}}.ico" />
- </div>
+ <img width="14" height="14" class="favicon" src="static/img/icon_{{result['favicon']}}.ico" />
{% endif %}
<div>
- <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3></br>
+ <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>
<p class="url">{{ result.pretty_url }}</p>
</div>