no_results.html 1.1 KB

12345678910111213141516171819202122232425262728
  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. {%- endif -%}
  8. </strong>{{- '' -}}
  9. </p>{{- '' -}}
  10. <p>
  11. {%- if pageno == 1 -%}
  12. {{ _("No results were found. You can try to:") }}
  13. {%- else -%}
  14. {{ _("There are no more results. You can try to:") }}
  15. {%- endif -%}
  16. </p>{{- '' -}}
  17. <ul>
  18. {%- if pageno == 1 -%}
  19. <li>{{ _("Refresh the page.") }}</li>{{- '' -}}
  20. <li>{{ _("Search for another query or select another category (above).") }}</li>{{- '' -}}
  21. <li>{{ _("Change the search engine used in the preferences:") }} <a href="/preferences">/preferences</a></li>{{- '' -}}
  22. <li>{{ _("Switch to another instance:") }} <a href="https://searx.space">https://searx.space</a></li>{{- '' -}}
  23. {%- else -%}
  24. <li>{{ _("Search for another query or select another category.") }}</li>{{- '' -}}
  25. <li>{{ _("Go back to the previous page using the previous page button.") }}</li>{{- '' -}}
  26. {%- endif -%}
  27. </ul>
  28. </div>