page.tpl.php in Panels Everywhere 6
Base file for use with a custom PE-enabled theme.
File
theme/page.tpl.phpView source
<?php
/**
 * @file
 * Base file for use with a custom PE-enabled theme.
 */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language->language;
?>" lang="<?php
print $language->language;
?>" dir="<?php
print $language->dir;
?>">
<head>
  <?php
print $head;
?>
  <title><?php
print $head_title;
?></title>
  <?php
print $styles;
?>
  <?php
print $scripts;
?>
  <script type="text/javascript"><?php
/* Needed to avoid Flash of Unstyled Content in IE */
?> </script>
</head>
<body>
  <?php
print $content;
?>
  <?php
print $closure;
?>
</body>
</html>
