no_results.html 826 B

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