diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
| commit | 389fc3b8b27e52a0959c4008ad303337f1c3c827 (patch) | |
| tree | a2e20ff4a218f3543356759f84a99b512ba77091 /searx/templates/default/result_templates/videos.html | |
| parent | 08df681b48aa32abfcf7420be30c669684dbc57e (diff) | |
Few fixes
- Whitespaces
- Change a few <p> in <span>
- Add RSS to allow browser detection
- A few UIUX changes
- Add a few more allowed translations
Diffstat (limited to 'searx/templates/default/result_templates/videos.html')
| -rw-r--r-- | searx/templates/default/result_templates/videos.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/default/result_templates/videos.html b/searx/templates/default/result_templates/videos.html index 75f965c80..ef6a1f505 100644 --- a/searx/templates/default/result_templates/videos.html +++ b/searx/templates/default/result_templates/videos.html @@ -1,6 +1,6 @@ <div class="result"> <h3 class="result_title">{% if "icon_"~result.engine~".ico" in favicons %}<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />{% 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 class="thumbnail" src="{{ result.thumbnail }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a> - <p class="url">{{ result.url }}</p> + {% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span><br />{% endif %} + <a href="{{ result.url }}"><img class="thumbnail" src="{{ result.thumbnail }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a> + <p class="url">{{ result.url }}</p> </div> |