logo

searx

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

base.html (2133B)


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