searxng/searx/templates/courgette/result_templates/videos.html

11 lines
666 B
HTML
Raw Normal View History

2014-08-18 08:44:46 +00:00
<div class="result">
2015-01-15 23:56:54 +00:00
{% 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 %}
2014-08-18 08:44:46 +00:00
2015-01-15 23:56:54 +00:00
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
{% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span><br />{% endif %}
<a href="{{ result.url }}"><img width="400" src="{{ image_proxify(result.thumbnail) }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a>
2015-01-15 23:56:54 +00:00
<p class="url">{{ result.pretty_url }}</p>
</div>