diff options
author | NumEricR <eric.github@gmail.com> | 2013-08-26 22:27:51 +0200 |
---|---|---|
committer | NumEricR <eric.github@gmail.com> | 2013-09-14 10:06:59 +0200 |
commit | d081f272b0b63cdf86ab7666747b63dbff7f068e (patch) | |
tree | dd6196df1919c616294a274652cc7f006893d594 /tpl/layout.twig | |
parent | 1b2abab6ddbb3460b8981a296fe04477a42801b3 (diff) | |
download | wallabag-d081f272b0b63cdf86ab7666747b63dbff7f068e.tar.gz wallabag-d081f272b0b63cdf86ab7666747b63dbff7f068e.tar.zst wallabag-d081f272b0b63cdf86ab7666747b63dbff7f068e.zip |
Use dynamic lang value in IE conditional comments
Diffstat (limited to 'tpl/layout.twig')
-rw-r--r-- | tpl/layout.twig | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tpl/layout.twig b/tpl/layout.twig index bb20075a..fec7054a 100644 --- a/tpl/layout.twig +++ b/tpl/layout.twig | |||
@@ -1,9 +1,8 @@ | |||
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | <!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="en"><![endif]--> | 2 | <!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="{{ lang }}"><![endif]--> |
3 | <!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="en"><![endif]--> | 3 | <!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="{{ lang }}"><![endif]--> |
4 | <!--[if IE 8]><html class="no-js ie8 ie678" lang="en"><![endif]--> | 4 | <!--[if IE 8]><html class="no-js ie8 ie678" lang="{{ lang }}"><![endif]--> |
5 | <!--[if gt IE 8]><html class="no-js" lang="en"><![endif]--> | 5 | <!--[if gt IE 8]><html class="no-js" lang="{{ lang }}"><![endif]--> |
6 | <html> | ||
7 | <html lang="{{ lang }}"> | 6 | <html lang="{{ lang }}"> |
8 | <head> | 7 | <head> |
9 | <meta name="viewport" content="initial-scale=1.0"> | 8 | <meta name="viewport" content="initial-scale=1.0"> |