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/default/infobox.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/default/infobox.html')
| -rw-r--r-- | searx/templates/default/infobox.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/default/infobox.html b/searx/templates/default/infobox.html index 1511cae06..50f5e098e 100644 --- a/searx/templates/default/infobox.html +++ b/searx/templates/default/infobox.html @@ -1,6 +1,6 @@ <div class="infobox"> <h2>{{ infobox.infobox }}</h2> - {% if infobox.img_src %}<img src="{{ infobox.img_src }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}" />{% endif %} + {% if infobox.img_src %}<img src="{{ image_proxify(infobox.img_src) }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}" />{% endif %} <p>{{ infobox.entity }}</p> <p>{{ infobox.content | safe }}</p> {% if infobox.attributes %} |