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/courgette/result_templates/videos.html

11 lines
644 B
HTML
Raw Normal View History

2014-12-01 12:26:38 +01:00
<div class="result">
2015-01-13 16:40:30 +01:00
{% if "icon_"~result.engine~".ico" in favicons %}
2015-01-13 17:13:08 +01:00
<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
2014-12-01 12:26:38 +01:00
{% endif %}
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
2015-01-13 16:40:30 +01:00
<a href="{{ result.url }}"><img width="400" src="{{ result.thumbnail }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a>
2014-12-01 12:26:38 +01:00
<p class="url">{{ result.url }}</p>
</div>