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/result_templates/default.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/result_templates/default.html')
| -rw-r--r-- | searx/templates/default/result_templates/default.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/default/result_templates/default.html b/searx/templates/default/result_templates/default.html index d0e725ac5..c41c58fa1 100644 --- a/searx/templates/default/result_templates/default.html +++ b/searx/templates/default/result_templates/default.html @@ -1,5 +1,5 @@ <div class="result {{ result.class }}"> - <h3 class="result_title"> {% if result['favicon'] %}<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3> + <h3 class="result_title"> {% if result['favicon'] %}<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3> <p class="url">{{ result.pretty_url }} <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">cached</a></p> {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %} <p class="content">{% if result.img_src %}<img src="{{ result.img_src }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p> |