diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-12 19:13:40 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-12 19:13:40 +0100 |
| commit | 3ffe6014ed491e47e779fa90ae8e7bb1d8eff849 (patch) | |
| tree | 06a06e344d308201fc321bec81673d3fe3fda392 | |
| parent | 3b88adf8b6782341d83a090ce94fe16328b19062 (diff) | |
Use the new way of finding the favicon
| -rw-r--r-- | searx/templates/oscar/result_templates/images.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/result_templates/images.html b/searx/templates/oscar/result_templates/images.html index 7689f9f58..3bdc13645 100644 --- a/searx/templates/oscar/result_templates/images.html +++ b/searx/templates/oscar/result_templates/images.html @@ -7,7 +7,7 @@ <div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
- <h4 class="modal-title">{% if result['favicon'] %}<img width="32" height="32" class="favicon" src="static/{{ theme }}/img/icons/{{ result['favicon'] }}.png" alt="{{ result['favicon'] }}" /> {% endif %}{{ result.title|striptags }}</h4>
+ <h4 class="modal-title">{% if result['favicon']~".png" in favicons %}<img width="32" height="32" class="favicon" src="static/{{ theme }}/img/icons/{{ result['favicon'] }}.png" alt="{{ result['favicon'] }}" /> {% endif %}{{ result.title|striptags }}</h4>
</div>
<div class="modal-body">
<img class="img-responsive center-block" src="{{ result.img_src }}" alt="{{ result.title }}">
|