base.html 1.4KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="description" content="Searx - a privacy-respecting, hackable metasearch engine" />
  6. <meta name="keywords" content="searx, search, search engine, metasearch, meta search" />
  7. <meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1" />
  8. <title>{% block title %}{% endblock %}searx</title>
  9. <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" media="screen" />
  10. <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}?v=2" />
  11. {% block styles %}
  12. {% endblock %}
  13. {% block head %}
  14. <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
  15. {% endblock %}
  16. <script type="text/javascript">
  17. searx = {};
  18. searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
  19. </script>
  20. </head>
  21. <body>
  22. <div id="container">
  23. {% block content %}
  24. {% endblock %}
  25. {% if autocomplete %}
  26. <script src="{{ url_for('static', filename='js/mootools-core-1.4.5-min.js') }}" ></script>
  27. <script src="{{ url_for('static', filename='js/mootools-autocompleter-1.1.2-min.js') }}" ></script>
  28. {% endif %}
  29. <script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
  30. </div>
  31. </body>
  32. </html>