summaryrefslogtreecommitdiff
path: root/searx/templates/result_templates/videos.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/result_templates/videos.html')
-rw-r--r--searx/templates/result_templates/videos.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/searx/templates/result_templates/videos.html b/searx/templates/result_templates/videos.html
new file mode 100644
index 000000000..ae6d8f16c
--- /dev/null
+++ b/searx/templates/result_templates/videos.html
@@ -0,0 +1,13 @@
+<div class="result">
+ {% if result['favicon'] %}
+ <div style="float:left; margin:2px;">
+ <img width="18" height="18" src="static/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}.ico" title="{{result['favicon']}}.ico" />
+ </div>
+ {% endif %}
+
+ <p>
+ <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
+ <a href="{{ result.url }}"><img width="300" height="170" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a>
+ <p class="url">{{ result.url }}</p>
+ </p>
+</div>