diff options
Diffstat (limited to 'templates/html.tpl.php')
-rw-r--r-- | templates/html.tpl.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/html.tpl.php b/templates/html.tpl.php new file mode 100644 index 0000000..7658f21 --- /dev/null +++ b/templates/html.tpl.php @@ -0,0 +1,24 @@ +<?php +// $Id$ +/** + * @file + * Output for main HTML page wrapper. + */ +?><!DOCTYPE html> +<html version="HTML+RDFa 1.0" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>" xmlns="http://www.w3.org/1999/xhtml"<?php print $rdf_namespaces; ?>> +<head profile="<?php print $grddl_profile; ?>"> + <?php print $head; ?> + <title><?php print $head_title; ?></title> + <?php print $styles; ?> + <?php print $scripts; ?> + <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> +</head> +<body class="<?php print $classes; ?>" <?php print $attributes;?>> + <div id="skip-link"> + <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a> + </div> + <?php print $page_top; ?> + <?php print $page; ?> + <?php print $page_bottom; ?> +</body> +</html>
\ No newline at end of file |