diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-15 10:12:56 -0700 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-15 10:12:56 -0700 |
commit | d62dfd88d2519f84b418700bcf7e08f1a4081662 (patch) | |
tree | dd6196df1919c616294a274652cc7f006893d594 /tpl/layout.twig | |
parent | 48207b6814eeaef30a0baf64c3ed1e1d148de6fe (diff) | |
parent | d081f272b0b63cdf86ab7666747b63dbff7f068e (diff) | |
download | wallabag-d62dfd88d2519f84b418700bcf7e08f1a4081662.tar.gz wallabag-d62dfd88d2519f84b418700bcf7e08f1a4081662.tar.zst wallabag-d62dfd88d2519f84b418700bcf7e08f1a4081662.zip |
Merge pull request #221 from NumEricR/language
Fix #183: language declaration
Diffstat (limited to 'tpl/layout.twig')
-rw-r--r-- | tpl/layout.twig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tpl/layout.twig b/tpl/layout.twig index 07ca231c..fec7054a 100644 --- a/tpl/layout.twig +++ b/tpl/layout.twig | |||
@@ -1,9 +1,9 @@ | |||
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> | 6 | <html lang="{{ lang }}"> |
7 | <head> | 7 | <head> |
8 | <meta name="viewport" content="initial-scale=1.0"> | 8 | <meta name="viewport" content="initial-scale=1.0"> |
9 | <meta charset="utf-8"> | 9 | <meta charset="utf-8"> |