1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-19 19:50:19 +02:00
searxng/searx/templates/default/result_templates/map.html

14 lines
856 B
HTML
Raw Normal View History

<div class="result {{ result.class }}">
{% if "icon_"~result.engine~".ico" in favicons %}
2015-01-09 04:05:39 +01:00
<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
{% endif %}
<div>
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
<p class="url">{{ result.pretty_url }}&lrm; <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">{{ _('cached') }}</a>
{% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span>{% endif %}</p>
<p class="content">{% if result.img_src %}<img src="{{ image_proxify(result.img_src) }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p>
</div>
</div>