index.html 641 B

123456789101112131415161718
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <a href="https://github.com/asciimoo/searx" class="github">
  4. <img style="position: absolute; top: 0; right: 0; border: 0;" src="/static/img/github_ribbon.png" alt="Fork me on GitHub" class="github"/>
  5. </a>
  6. <div class="center">
  7. <h1>searx</h1>
  8. <form method="post" action="">
  9. <input type="text" name="q" tabindex="1" />
  10. <input type="submit" value="search" />
  11. <p>
  12. {% for engine in engines %}
  13. {{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
  14. {% endfor %}
  15. </p>
  16. </form>
  17. </div>
  18. {% endblock %}