diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-12-13 23:27:49 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-12-13 23:27:49 +0100 |
| commit | f5aec98cbd023a63ffd6bbee1c18134036b3a7bc (patch) | |
| tree | b8b218fd098af2ab642d3dbd762d9f28224c3c72 /searx/templates/default/infobox.html | |
| parent | 2cfa760b57748f427e65fbfb6cfff9a6299882b1 (diff) | |
| parent | b2f5f655959597ff42ca908d401a6b5909d15eec (diff) | |
Merge pull request #145 from Cqoicebordel/HTML+Bugs-Templates
Html+Bugs in templates
Diffstat (limited to 'searx/templates/default/infobox.html')
| -rw-r--r-- | searx/templates/default/infobox.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/templates/default/infobox.html b/searx/templates/default/infobox.html index d03b008f9..e99e9868b 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 }}" />{% endif %} + {% if infobox.img_src %}<img src="{{ infobox.img_src }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}" />{% endif %} <p>{{ infobox.entity }}</p> <p>{{ infobox.content | safe }}</p> {% if infobox.attributes %} @@ -42,3 +42,4 @@ <br /> </div> + name= |