diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 15:23:56 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 15:23:56 +0100 |
| commit | df9cf9d09bf4496a9e5d799bd99437a3224a06d4 (patch) | |
| tree | f5e02ae4c0446f703e5c6c112d631add591a693f /searx/templates/default/index.html | |
| parent | c711212662996e232a1d3bc692f6f765e1467125 (diff) | |
Merge branch 'rtl' of github.com:Cqoicebordel/searx
Diffstat (limited to 'searx/templates/default/index.html')
| -rw-r--r-- | searx/templates/default/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/searx/templates/default/index.html b/searx/templates/default/index.html index 72fbec8ca..fc15a44b6 100644 --- a/searx/templates/default/index.html +++ b/searx/templates/default/index.html @@ -4,8 +4,13 @@ <div class="title"><h1>searx</h1></div> {% include 'default/search.html' %} <p class="top_margin"> + {% if rtl %} + <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> + {% endif %} <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a> + {% if not rtl %} <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> + {% endif %} </p> </div> {% include 'default/github_ribbon.html' %} |