Skip to content
html.tpl.php 862 B
Newer Older
shivcharan Patil's avatar
shivcharan Patil committed
<?php
/**
 * @file
 * Black theme's implementation to display the basic html
 * structure of a single Drupal page.
 */
?>

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>>
    <head>
      <?php print $head; ?>
      <title><?php print $head_title; ?></title>
      <?php print $styles; ?>
	  <style type="text/css" rel="stylesheet">
	   .width {width: <?php print $beach_width; ?>}
	  </style>
    </head>
    <body class="<?php print $classes; ?>"<?php print $attributes; ?>>
      <?php print $page_top; ?>
      <?php print $page; ?>
      <?php print $page_bottom; ?>
    </body>
  </html>