summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/result_templates/map.html
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2015-04-26 15:32:26 +0200
committerAlexandre Flament <alex@al-f.net>2015-04-26 15:32:26 +0200
commit77b2fbb61edadab9319cfee429e9694840edec81 (patch)
tree73d382036e9acea587b251505a2d32714d26015e /searx/templates/courgette/result_templates/map.html
parent952473d297b2f0131196086f5824ae48f32d2922 (diff)
[enh] implements #264 : add rel="noreferrer" to external links
Diffstat (limited to 'searx/templates/courgette/result_templates/map.html')
-rw-r--r--searx/templates/courgette/result_templates/map.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/courgette/result_templates/map.html b/searx/templates/courgette/result_templates/map.html
index f5f5acef7..585ecf3f5 100644
--- a/searx/templates/courgette/result_templates/map.html
+++ b/searx/templates/courgette/result_templates/map.html
@@ -5,9 +5,9 @@
{% endif %}
<div>
- <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
+ <h3 class="result_title"><a href="{{ result.url }}" rel="noreferrer">{{ result.title|safe }}</a></h3>
{% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span>{% endif %}
<p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
<p class="url">{{ result.pretty_url }}&lrm;</p>
</div>
-</div> \ No newline at end of file
+</div>