diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-18 10:39:13 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-18 10:39:13 +0100 |
| commit | 285f991cd078db7df5622e3109984f1f3c651988 (patch) | |
| tree | 0300ad8dee31d7c9cfcf9246d749290e50f2f218 /searx/templates/courgette/result_templates/videos.html | |
| parent | a865e6672fa2a289937ff378e8893c19f71c5e0c (diff) | |
| parent | 1d5151215266d74085406604f99d8dec1c7cbe72 (diff) | |
Merge pull request #182 from dalf/enh-proxy
[enh] image-proxy : handle ETag and date related headers, add hash to URL
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 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> |