mirror of https://github.com/searxng/searxng.git
14 lines
573 B
HTML
14 lines
573 B
HTML
<div class="result {{ result.class }}">
|
|
|
|
{% if result['favicon'] %}
|
|
<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" alt="{{result['favicon']}}" />
|
|
{% endif %}
|
|
|
|
<div>
|
|
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
|
|
{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
|
|
<p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
|
|
<p class="url">{{ result.pretty_url }}</p>
|
|
</div>
|
|
</div>
|