base.html 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"{% if rtl %} dir="rtl"{% endif %}>
  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="generator" content="searx/{{ searx_version }}">
  8. <meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1" />
  9. <title>{% block title %}{% endblock %}searx</title>
  10. <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" media="screen" />
  11. {% if rtl %}
  12. <link rel="stylesheet" href="{{ url_for('static', filename='css/style-rtl.css') }}" type="text/css" media="screen" />
  13. {% endif %}
  14. {% if cookies['courgette-color'] %}
  15. <style type="text/css">
  16. {% include 'courgette/color.css' %}
  17. </style>
  18. {% endif %}
  19. <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}?v=2" />
  20. {% block styles %}
  21. {% endblock %}
  22. {% block meta %}{% endblock %}
  23. {% block head %}
  24. <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
  25. {% endblock %}
  26. <script type="text/javascript">
  27. searx = {};
  28. searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
  29. </script>
  30. </head>
  31. <body>
  32. <div id="container">
  33. {% block content %}
  34. {% endblock %}
  35. {% if autocomplete %}
  36. <script src="{{ url_for('static', filename='js/mootools-core-1.4.5-min.js') }}" ></script>
  37. <script src="{{ url_for('static', filename='js/mootools-autocompleter-1.1.2-min.js') }}" ></script>
  38. {% endif %}
  39. <script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
  40. </div>
  41. </body>
  42. </html>