summaryrefslogtreecommitdiff
path: root/searx/templates/base.html
diff options
context:
space:
mode:
authorThomas Pointhuber <thomas.pointhuber@gmx.at>2014-03-05 15:10:38 +0100
committerThomas Pointhuber <thomas.pointhuber@gmx.at>2014-03-05 15:10:38 +0100
commite30f43bd81b3d7a682b3bb65eacd20ddb46b5230 (patch)
tree0cd30184ab574b4177ad3f04f9826ba82bfbeda1 /searx/templates/base.html
parent07f83cab224d2ddf1f7fd8b544f2f2d6679c2416 (diff)
parent73ab92544a5240bcbe7a1d39ee50ad809125db30 (diff)
Merge remote-tracking branch 'asciimoo/master'
Diffstat (limited to 'searx/templates/base.html')
-rw-r--r--searx/templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/base.html b/searx/templates/base.html
index 683ed4ed3..d1892245b 100644
--- a/searx/templates/base.html
+++ b/searx/templates/base.html
@@ -6,19 +6,19 @@
<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="/static/css/style.css" type="text/css" media="screen" />
+ <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="/opensearch.xml"/>
+ <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
{% endblock %}
</head>
<body>
<div id="container">
{% block content %}
{% endblock %}
-<script src="/static/js/searx.js" ></script>
+<script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
</div>
</body>
</html>