layout: add lang to HTML element
This commit is contained in:
parent
262dcff3a5
commit
0225461d3e
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Icinga\Web\JavaScript;
|
use Icinga\Web\JavaScript;
|
||||||
|
use Icinga\Util\Translator;
|
||||||
|
|
||||||
if (array_key_exists('_dev', $_GET)) {
|
if (array_key_exists('_dev', $_GET)) {
|
||||||
$jsfile = 'js/icinga.dev.js';
|
$jsfile = 'js/icinga.dev.js';
|
||||||
|
@ -11,15 +12,15 @@ if (array_key_exists('_dev', $_GET)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$ie8jsfile = 'js/icinga.ie8.js';
|
$ie8jsfile = 'js/icinga.ie8.js';
|
||||||
|
$lang = Translator::getLanguage();
|
||||||
$isIframe = isset($_GET['_render']) && $_GET['_render'] === 'iframe';
|
$isIframe = isset($_GET['_render']) && $_GET['_render'] === 'iframe';
|
||||||
$iframeClass = $isIframe ? ' iframe' : '';
|
$iframeClass = $isIframe ? ' iframe' : '';
|
||||||
|
|
||||||
?><!DOCTYPE html>
|
?><!DOCTYPE html>
|
||||||
<!--[if IE 8]>
|
<!--[if IE 8]>
|
||||||
<html class="no-js ie8<?= $iframeClass ?>"> <![endif]-->
|
<html class="no-js ie8<?= $iframeClass ?>" lang="<?= $lang ?>"> <![endif]-->
|
||||||
<!--[if gt IE 8]><!-->
|
<!--[if gt IE 8]><!-->
|
||||||
<html class="no-js<?= $iframeClass ?>"> <!--<![endif]-->
|
<html class="no-js<?= $iframeClass ?>" lang="<?= $lang ?>"> <!--<![endif]-->
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
|
<meta content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
|
||||||
|
|
Loading…
Reference in New Issue