html.tpl.php 871 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Alpha's theme implementation to display the basic html structure of a single
  5. * Drupal page.
  6. */
  7. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
  8. "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
  9. <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; ?>>
  10. <head profile="<?php print $grddl_profile; ?>">
  11. <?php print $head; ?>
  12. <title><?php print $head_title; ?></title>
  13. <?php print $styles; ?>
  14. <?php print $scripts; ?>
  15. </head>
  16. <body<?php print $attributes;?>>
  17. <div id="skip-link">
  18. <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
  19. </div>
  20. <?php print $page_top; ?>
  21. <?php print $page; ?>
  22. <?php print $page_bottom; ?>
  23. </body>
  24. </html>