summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/base.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2015-02-10 15:23:56 +0100
committerAdam Tauber <asciimoo@gmail.com>2015-02-10 15:23:56 +0100
commitdf9cf9d09bf4496a9e5d799bd99437a3224a06d4 (patch)
treef5e02ae4c0446f703e5c6c112d631add591a693f /searx/templates/courgette/base.html
parentc711212662996e232a1d3bc692f6f765e1467125 (diff)
Merge branch 'rtl' of github.com:Cqoicebordel/searx
Diffstat (limited to 'searx/templates/courgette/base.html')
-rw-r--r--searx/templates/courgette/base.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/searx/templates/courgette/base.html b/searx/templates/courgette/base.html
index 08f9bfa73..58957335d 100644
--- a/searx/templates/courgette/base.html
+++ b/searx/templates/courgette/base.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"{% if rtl %} dir="rtl"{% endif %}>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Searx - a privacy-respecting, hackable metasearch engine" />
@@ -8,6 +8,9 @@
<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" />
+ {% if rtl %}
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/style-rtl.css') }}" type="text/css" media="screen" />
+ {% endif %}
{% if cookies['courgette-color'] %}
<style type="text/css">
{% include 'courgette/color.css' %}