diff options
| author | dalf <alex@al-f.net> | 2015-01-17 22:36:48 +0100 |
|---|---|---|
| committer | dalf <alex@al-f.net> | 2015-01-17 22:36:48 +0100 |
| commit | 9154cf7930029d20356de20b002e4b9741cce70a (patch) | |
| tree | 14ab65605e27eb49ea95a7eab39acd0d89a9f093 /searx/templates/default | |
| parent | b6d27aca590c034710544a982bca2b71abb878c5 (diff) | |
Proxify images inside infoboxes
Diffstat (limited to 'searx/templates/default')
| -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 %} |