summaryrefslogtreecommitdiff
path: root/searx/templates/simple/messages/no_results.html
blob: 8144b5dd628378efa90246bad11174ada28c79d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% from 'simple/icons.html' import icon_big %}
<div class="dialog-error-block" role="alert">
  <p>
    <strong>
      {%- if pageno == 1 -%}
        {{ _('Sorry!') }}
      {%- else -%}
        {{ _("Oops!") }}
      {%- endif -%}
    </strong>
  </p>
  <p>
    {%- if pageno == 1 -%}
      {{ _("No results were found. You can try to:") }}
    {%- else -%}
      {{ _("Looks like there isn't any more results. You can try to:") }}
    {%- endif -%}
  </p>
  <ul>
    <li>{{ _("Refresh the page.") }}</li>
    <li>{{ _("Search for another query or select another category (above).") }}</li>
    <li>{{ _("Change the search engine used in the preferences:") }} <a href="/preferences">/preferences</a></li>
    <li>{{ _("Switch to another instance:") }} <a href="https://searx.space">https://searx.space</a></li>
  </ul>
</div>