summaryrefslogtreecommitdiff
path: root/searx/templates/simple/base.html
blob: 0003f113edf4be3ba80d29d8691009219a50026f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html class="no-js" lang="en" {% if rtl %} dir="rtl"{% endif %}>
<head>
  <meta charset="UTF-8" />
  <meta name="description" content="searx - a privacy-respecting, hackable metasearch engine">
  <meta name="keywords" content="searx, search, search engine, metasearch, meta search">
  <meta name="generator" content="searx/{{ searx_version }}">
  <meta name="referrer" content="no-referrer">
  <meta name="robots" content="noarchive">
  <meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1">
  <meta name="HandheldFriendly" content="True">
  <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
  <title>{% block title %}{% endblock %}searx</title>
  {% if rtl %}
  <link rel="stylesheet" href="{{ url_for('static', filename='css/searx-rtl.min.css') }}" type="text/css" media="screen" />
  {% else %}
  <link rel="stylesheet" href="{{ url_for('static', filename='css/searx.min.css') }}" type="text/css" media="screen" />
  {% endif %}
  {% block styles %}{% endblock %}
  {% block meta %}{% endblock %}
  {% block head %}
  <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
  {% endblock %}
  <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}" />
  <script type="text/javascript">
    var searx = {
      autocompleter: {% if autocomplete %}true{% else %}false{% endif %},
      method: "{{ method or 'POST' }}",
      touch: (("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch) || false,
      staticPath: "{{ url_for('static', filename='themes/simple') }}/",
      noItemFound: "{{ _('No item found') }}",
      search_on_category_select: {{ 'true' if 'plugins/js/search_on_category_select.js' in scripts else 'false'}},
      infinite_scroll: {{ 'true' if 'plugins/js/infinite_scroll.js' in scripts else 'false' }}
    };
    document.getElementsByTagName("html")[0].className = (searx.touch)?"js touch":"js";
  </script>
</head>
<body>
  <main id="main_{{  self._TemplateReference__context.name|replace("simple/", "")|replace(".html", "") }}">
    {% if errors %}
        <div class="dialog-error" role="alert">
            <a href="#" class="close" aria-label="close" title="close">×</a>
            <ul>
            {% for message in errors %}
                <li>{{ message }}</li>
            {% endfor %}
            </ul>
        </div>
    {% endif %}

    {% block content %}
    {% endblock %}
  </main>
  <footer>
    <p>{{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}</p>
  </footer>
  <!--[if gte IE 9]>-->
  <script src="{{ url_for('static', filename='js/searx.min.js') }}" ></script>
  <!--<![endif]-->
</body>
</html>