2014-08-18 10:44:46 +02:00
|
|
|
<!DOCTYPE html>
|
2015-02-10 15:23:56 +01:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"{% if rtl %} dir="rtl"{% endif %}>
|
2015-01-16 00:56:54 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2016-08-15 17:12:43 +02:00
|
|
|
<meta name="description" content="searx - a privacy-respecting, hackable metasearch engine" />
|
2015-01-16 00:56:54 +01:00
|
|
|
<meta name="keywords" content="searx, search, search engine, metasearch, meta search" />
|
|
|
|
<meta name="generator" content="searx/{{ searx_version }}">
|
2015-04-26 15:48:48 +02:00
|
|
|
<meta name="referrer" content="no-referrer">
|
2015-01-16 00:56:54 +01:00
|
|
|
<meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1" />
|
|
|
|
<title>{% block title %}{% endblock %}searx</title>
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" media="screen" />
|
2015-02-10 15:23:56 +01:00
|
|
|
{% if rtl %}
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style-rtl.css') }}" type="text/css" media="screen" />
|
|
|
|
{% endif %}
|
2015-01-19 22:07:19 +01:00
|
|
|
{% if cookies['courgette-color'] %}
|
|
|
|
<style type="text/css">
|
|
|
|
{% include 'courgette/color.css' %}
|
|
|
|
</style>
|
|
|
|
{% endif %}
|
2015-01-16 00:56:54 +01:00
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}?v=2" />
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block meta %}{% endblock %}
|
|
|
|
{% block head %}
|
2016-10-09 01:12:56 +02:00
|
|
|
<link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
|
2015-01-16 00:56:54 +01:00
|
|
|
{% endblock %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
searx = {};
|
|
|
|
searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
{% if autocomplete %}
|
|
|
|
<script src="{{ url_for('static', filename='js/mootools-core-1.4.5-min.js') }}" ></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/mootools-autocompleter-1.1.2-min.js') }}" ></script>
|
|
|
|
{% endif %}
|
|
|
|
<script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
|
|
|
|
</div>
|
|
|
|
</body>
|
2015-04-26 15:48:48 +02:00
|
|
|
</html>
|