]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/html.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / default / templates / html.tmpl
1 <?php  // -*-php-*-
2 // rcs_id('$Id$');
3 /*
4  * This template is responsible mainly for the outer level <html> stuff.
5  *
6  * NS/MO/IE/Op Browsers before 4.0 don't like that.
7  */
8 if (browserVersion() >= 4.0)
9   echo "<","?xml version=\"1.0\" encoding=\"", $charset, "\"?", ">\n";
10 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
11   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
12 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$GLOBALS['LANG']?>" lang="<?=$GLOBALS['LANG']?>">
13 <?= Template('head') ?>
14 <?= Template('body') ?>
15 </html>