mirror of https://github.com/searx/searx
[fix] change lang attribute of the html to match the current locale - #350
This commit is contained in:
parent
6ab569f558
commit
ec48447361
|
@ -1,6 +1,6 @@
|
||||||
{% from 'oscar/macros.html' import icon %}
|
{% from 'oscar/macros.html' import icon %}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"{% if rtl %} dir="rtl"{% endif %}>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ preferences.get_value('locale') }}" xml:lang="{{ preferences.get_value('locale') }}"{% if rtl %} dir="rtl"{% endif %}>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="description" content="searx - a privacy-respecting, hackable metasearch engine" />
|
<meta name="description" content="searx - a privacy-respecting, hackable metasearch engine" />
|
||||||
|
|
Loading…
Reference in New Issue