diff options
| author | Alexandre Flament <alex@al-f.net> | 2015-04-26 15:32:26 +0200 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2015-04-26 15:32:26 +0200 |
| commit | 77b2fbb61edadab9319cfee429e9694840edec81 (patch) | |
| tree | 73d382036e9acea587b251505a2d32714d26015e /searx/templates/courgette/result_templates/videos.html | |
| parent | 952473d297b2f0131196086f5824ae48f32d2922 (diff) | |
[enh] implements #264 : add rel="noreferrer" to external links
Diffstat (limited to 'searx/templates/courgette/result_templates/videos.html')
| -rw-r--r-- | searx/templates/courgette/result_templates/videos.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/courgette/result_templates/videos.html b/searx/templates/courgette/result_templates/videos.html index 4e0174ba6..ceed8b28f 100644 --- a/searx/templates/courgette/result_templates/videos.html +++ b/searx/templates/courgette/result_templates/videos.html @@ -3,8 +3,8 @@ <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" /> {% endif %} - <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><br />{% endif %} - <a href="{{ result.url }}"><img width="400" src="{{ image_proxify(result.thumbnail) }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a> + <a href="{{ result.url }}" rel="noreferrer"><img width="400" src="{{ image_proxify(result.thumbnail) }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a> <p class="url">{{ result.pretty_url }}‎</p> </div> |