diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-10-30 08:09:07 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-10-30 08:09:07 +0100 |
| commit | 58cc03351a10668da8aedd355d8b7da33057855a (patch) | |
| tree | 9a49da81bdb76ed3145168621e8a0954a2d5de4f /searx/templates/default/result_templates/videos.html | |
| parent | 79f1676e318d36704687966fd124b7f29ddc21fa (diff) | |
| parent | 8534d8b87a02cf7713d071fa0837734f7d620b51 (diff) | |
Merge pull request #118 from dalf/master
default theme : small modifications
Diffstat (limited to 'searx/templates/default/result_templates/videos.html')
| -rw-r--r-- | searx/templates/default/result_templates/videos.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/searx/templates/default/result_templates/videos.html b/searx/templates/default/result_templates/videos.html index 8ceb0b180..233a6c021 100644 --- a/searx/templates/default/result_templates/videos.html +++ b/searx/templates/default/result_templates/videos.html @@ -1,12 +1,8 @@ <div class="result"> - {% if result['favicon'] %} - <img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" /> - {% endif %} - <p> - <h3 class="result_title"><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" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3> {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %} - <a href="{{ result.url }}"><img width="400px" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a> + <a href="{{ result.url }}"><img class="thumbnail" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a> <p class="url">{{ result.url }}</p> </p> </div> |