diff options
| author | Matej Cotman <cotman.matej@gmail.com> | 2014-04-24 23:46:40 +0000 |
|---|---|---|
| committer | Matej Cotman <cotman.matej@gmail.com> | 2014-06-05 13:18:22 +0200 |
| commit | 08eaffe245303818069df3332eece11f41a0bd8e (patch) | |
| tree | 9a111cc283b644de9f9df306c531644e8421e283 /searx/templates/base.html | |
| parent | 3386e21cdf30bf0accb84e2dcc4dea0076af1b90 (diff) | |
add multi theming support
Diffstat (limited to 'searx/templates/base.html')
| -rw-r--r-- | searx/templates/base.html | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/searx/templates/base.html b/searx/templates/base.html deleted file mode 100644 index da5ae905f..000000000 --- a/searx/templates/base.html +++ /dev/null @@ -1,32 +0,0 @@ -<!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> -<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="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" /> - <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}?v=2" /> - {% block styles %} - {% endblock %} - {% block head %} - <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/> - {% 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> -</html> |