logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

no_results.html (627B)


  1. {% if unresponsive_engines %}
  2. <div class="dialog-error" role="alert">
  3. <p><strong>{{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results.') }}</p>
  4. <p>
  5. {% for engine_name, error_type in unresponsive_engines %}
  6. {{ engine_name }} ({{ error_type }}){% if not loop.last %}, {% endif %}
  7. {% endfor %}
  8. </p>
  9. <p>{{ _('Please, try again later or find another searx instance.') }}</p>
  10. </div>
  11. {% else %}
  12. <div class="dialog-error" role="alert">
  13. <p><strong>{{ _('Sorry!') }}</strong></p>
  14. <p>{{ _('we didn\'t find any results. Please use another query or search in more categories.') }}</p>
  15. </div>
  16. {% endif %}