diff options
author | MaZderMind | 2014-12-23 11:20:44 +0100 |
---|---|---|
committer | MaZderMind | 2014-12-23 11:20:44 +0100 |
commit | 024adda9a4b131c8f64a5749415ccadb99121d04 (patch) | |
tree | 47bfd90b311eb0960d99901c4999e8e4aaeae508 /template/page.phtml | |
parent | b2c45aa515a7ed7bf7e3845ad431ca9d26a38553 (diff) |
move motd after the charset declaration
otherwise firefox has issues parsing the deocument as utf-8
Diffstat (limited to 'template/page.phtml')
-rw-r--r-- | template/page.phtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/page.phtml b/template/page.phtml index 63a4bac..3e12e22 100644 --- a/template/page.phtml +++ b/template/page.phtml @@ -1,12 +1,13 @@ <!DOCTYPE html> -<? include("$assemblies/motd.phtml") ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv='X-UA-Compatible' content='IE=edge'> +<? include("$assemblies/motd.phtml") ?> + <title><?=h($title)?> – 31C3 Streaming</title> <meta name="robots" content="index,follow" /> |