summaryrefslogtreecommitdiff
path: root/searx/templates/simple/languages.html
diff options
context:
space:
mode:
authormrpaulblack <paul@paulgo.io>2021-11-21 21:38:00 +0100
committermrpaulblack <paul@paulgo.io>2021-11-21 21:38:00 +0100
commitf3aff26086dda1c2610c9aa845db119ad413006f (patch)
tree7e312aafdb1831b46a709089fd3f7875d1b7cd6b /searx/templates/simple/languages.html
parent02cccdf876f2e0b07ef488e6033a858113dc3f1c (diff)
[simple theme] rework select; add safesearch to search and replace / with › in article url
* rework selection UI in pref (fix based on: https://github.com/twelsby/searx/commit/78643e9f43a103c523f112e9f3ce26a5c7bb3a0f) * moved search filters underneath categories * cut params from url and replace / with › * make h3 and url in article bigger * add safe search select to search filter (this will not override settings and only be valid while on result page in a session) * make search form button not overlap each other when js is disabled * 1rem padding around preview image and thumbnail in default article template
Diffstat (limited to 'searx/templates/simple/languages.html')
-rw-r--r--searx/templates/simple/languages.html8
1 files changed, 0 insertions, 8 deletions
diff --git a/searx/templates/simple/languages.html b/searx/templates/simple/languages.html
deleted file mode 100644
index dd928ff68..000000000
--- a/searx/templates/simple/languages.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<select class="language" id="language" name="language" tabindex="2">{{- '' -}}
- <option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
- {%- for lang_id,lang_name,country_name,english_name in language_codes | sort(attribute=1) -%}
- <option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>
- {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}- {{ lang_id -}}
- </option>
- {%- endfor -%}
-</select>