mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
16 lines
504 B
HTML
16 lines
504 B
HTML
{% from 'simple/icons.html' import icon_big %}
|
|
{% if unresponsive_engines %}
|
|
<div class="dialog-error" role="alert">
|
|
{{ icon_big('warning') }}
|
|
<div>
|
|
<p><strong>{{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results.') }}</p>
|
|
|
|
<p><small></small></p>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<div class="dialog-error" role="alert">
|
|
<p><strong>{{ _('Sorry!') }}</strong></p>
|
|
<p>{{ _("we didn't find any results. Please use another query or search in more categories.") }}</p>
|
|
</div>
|
|
{% endif %}
|