mirror of https://github.com/searxng/searxng.git
15 lines
541 B
HTML
15 lines
541 B
HTML
<div class="result {{ result.class }}">
|
|
|
|
{% if result['favicon'] %}
|
|
<div style="float:left; margin:2px;">
|
|
<img width="24" height="24" src="static/img/icon_{{result['favicon']}}.png" alt="{{result['favicon']}}.png" title="{{result['favicon']}}.png" />
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div>
|
|
<h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3></br>
|
|
<p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
|
|
<p class="url">{{ result.pretty_url }}</p>
|
|
</div>
|
|
</div>
|