logo

searx

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

no_results.html (797B)


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