logo

searx

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

base.html (2000B)


  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. <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}?v=2" />
  16. {% block styles %}
  17. {% endblock %}
  18. {% block meta %}{% endblock %}
  19. {% block head %}
  20. <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
  21. {% endblock %}
  22. </head>
  23. <body>
  24. <div id="container">
  25. {% block content %}
  26. {% endblock %}
  27. {% if autocomplete %}
  28. <script src="{{ url_for('static', filename='js/mootools-core-1.4.5-min.js') }}" ></script>
  29. <script src="{{ url_for('static', filename='js/mootools-autocompleter-1.1.2-min.js') }}" ></script>
  30. {% endif %}
  31. <script type="text/javascript">
  32. searx = {};
  33. searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
  34. </script>
  35. <script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
  36. </div>
  37. </body>
  38. </html>