summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/result_templates/videos.html
diff options
context:
space:
mode:
authordalf <alex@al-f.net>2015-01-18 09:54:24 +0100
committerdalf <alex@al-f.net>2015-01-18 09:54:24 +0100
commit1d5151215266d74085406604f99d8dec1c7cbe72 (patch)
tree0300ad8dee31d7c9cfcf9246d749290e50f2f218 /searx/templates/courgette/result_templates/videos.html
parent9154cf7930029d20356de20b002e4b9741cce70a (diff)
Proxify most of images references
Create hash only when necessary
Diffstat (limited to 'searx/templates/courgette/result_templates/videos.html')
-rw-r--r--searx/templates/courgette/result_templates/videos.html4
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 ebb7af4e4..891b69f28 100644
--- a/searx/templates/courgette/result_templates/videos.html
+++ b/searx/templates/courgette/result_templates/videos.html
@@ -5,6 +5,6 @@
<h3 class="result_title"><a href="{{ result.url }}">{{ 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="{{ result.thumbnail }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a>
+ <a href="{{ result.url }}"><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> \ No newline at end of file
+</div>