diff options
| author | Matej Cotman <cotman.matej@gmail.com> | 2014-04-24 23:46:40 +0000 |
|---|---|---|
| committer | Matej Cotman <cotman.matej@gmail.com> | 2014-06-05 13:18:22 +0200 |
| commit | 08eaffe245303818069df3332eece11f41a0bd8e (patch) | |
| tree | 9a111cc283b644de9f9df306c531644e8421e283 /searx/templates/default/result_templates/videos.html | |
| parent | 3386e21cdf30bf0accb84e2dcc4dea0076af1b90 (diff) | |
add multi theming support
Diffstat (limited to 'searx/templates/default/result_templates/videos.html')
| -rw-r--r-- | searx/templates/default/result_templates/videos.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/default/result_templates/videos.html b/searx/templates/default/result_templates/videos.html new file mode 100644 index 000000000..8ceb0b180 --- /dev/null +++ b/searx/templates/default/result_templates/videos.html @@ -0,0 +1,12 @@ +<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> + {% 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> + <p class="url">{{ result.url }}</p> + </p> +</div> |