1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/templates/default/result_templates/videos.html

7 lines
660 B
HTML
Raw Normal View History

2014-12-01 12:26:38 +01:00
<div class="result">
2015-01-13 17:13:08 +01:00
<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>
2015-02-09 13:30:16 +01:00
{% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span><br />{% endif %}
<a href="{{ result.url }}"><img class="thumbnail" src="{{ image_proxify(result.thumbnail) }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a>
2015-02-17 12:45:54 +01:00
<p class="url">{{ result.url }}&lrm;</p>
2014-12-01 12:26:38 +01:00
</div>