logo

searx

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

404.html (319B)


  1. {% extends "pix-art/base.html" %}
  2. {% block content %}
  3. <div class="center">
  4. <h1>{{ _('Page not found') }}</h1>
  5. {% autoescape false %}
  6. <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
  7. {% endautoescape %}
  8. </div>
  9. {% endblock %}