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/default.html

14 lines
724 B
HTML
Raw Normal View History

<div class="result {{ result.class }}">
{% if result['favicon'] %}
2014-04-25 01:46:40 +02:00
<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />
{% endif %}
<div>
2014-01-19 22:58:50 +01:00
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
<p class="url">{{ result.pretty_url }} <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">cached</a></p>
2014-03-14 09:55:04 +01:00
{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
2014-10-04 22:50:13 +02:00
<p class="content">{% if result.img_src %}<img src="{{ result.img_src }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p>
</div>
2013-10-22 23:32:52 +02:00
</div>