mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 21:00:13 +01:00
a71b326d9e
- more smartphone friendly - more text browser friendly - next button always on the right - in case of small screen supporting touch event, categories are displayed on one line with a scroll
9 lines
565 B
HTML
9 lines
565 B
HTML
<div class="result">
|
|
<p>
|
|
<h3 class="result_title"> {% if result['favicon'] %}<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
|
|
{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
|
|
<a href="{{ result.url }}"><img class="thumbnail" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a>
|
|
<p class="url">{{ result.url }}</p>
|
|
</p>
|
|
</div>
|