diff --git a/searx/templates/oscar/result_templates/map.html b/searx/templates/oscar/result_templates/map.html
index 7ed629da7..a0858c0ce 100644
--- a/searx/templates/oscar/result_templates/map.html
+++ b/searx/templates/oscar/result_templates/map.html
@@ -1,6 +1,6 @@
{% from 'oscar/macros.html' import icon %}
-
+
{% if result.publishedDate %}
{% endif %}
diff --git a/searx/templates/oscar/result_templates/torrent.html b/searx/templates/oscar/result_templates/torrent.html
index 94e6f22f7..b6753f704 100644
--- a/searx/templates/oscar/result_templates/torrent.html
+++ b/searx/templates/oscar/result_templates/torrent.html
@@ -1,6 +1,6 @@
{% from 'oscar/macros.html' import icon %}
-
+
{% if result.publishedDate %}
{% endif %}
{{ icon('link') }} {{ _('cached') }}
diff --git a/searx/templates/oscar/result_templates/videos.html b/searx/templates/oscar/result_templates/videos.html
index 977fcf88a..2b9568847 100644
--- a/searx/templates/oscar/result_templates/videos.html
+++ b/searx/templates/oscar/result_templates/videos.html
@@ -1,13 +1,13 @@
{% from 'oscar/macros.html' import icon %}
-
+
{% if result.publishedDate %}
{% endif %}
{{ icon('link') }} {{ _('cached') }}
-
+
{% if result.content %}
{{ result.content|safe }}
{% endif %}
diff --git a/searx/webapp.py b/searx/webapp.py
index 6387a92f4..ca58d8ea3 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -68,10 +68,6 @@ app.secret_key = settings['server']['secret_key']
babel = Babel(app)
-#TODO configurable via settings.yml
-favicons = ['wikipedia', 'youtube', 'vimeo', 'dailymotion', 'soundcloud',
- 'twitter', 'stackoverflow', 'github', 'deviantart']
-
global_favicons = []
for indice,theme in enumerate(themes):
global_favicons.append([])
@@ -294,10 +290,6 @@ def index():
result['pretty_url'] = u'{0}[...]{1}'.format(*url_parts)
else:
result['pretty_url'] = result['url']
-
- for engine in result['engines']:
- if engine in favicons:
- result['favicon'] = engine
# TODO, check if timezone is calculated right
if 'publishedDate' in result: