html.tpl.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display the basic html structure of a single
  5. * Drupal page.
  6. *
  7. * Variables:
  8. * - $css: An array of CSS files for the current page.
  9. * - $language: (object) The language the site is being displayed in.
  10. * $language->language contains its textual representation.
  11. * $language->dir contains the language direction. It will either be 'ltr' or 'rtl'.
  12. * - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document.
  13. * - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data.
  14. * - $head_title: A modified version of the page title, for use in the TITLE
  15. * tag.
  16. * - $head_title_array: (array) An associative array containing the string parts
  17. * that were used to generate the $head_title variable, already prepared to be
  18. * output as TITLE tag. The key/value pairs may contain one or more of the
  19. * following, depending on conditions:
  20. * - title: The title of the current page, if any.
  21. * - name: The name of the site.
  22. * - slogan: The slogan of the site, if any, and if there is no title.
  23. * - $head: Markup for the HEAD section (including meta tags, keyword tags, and
  24. * so on).
  25. * - $styles: Style tags necessary to import all CSS files for the page.
  26. * - $scripts: Script tags necessary to load the JavaScript files and settings
  27. * for the page.
  28. * - $page_top: Initial markup from any modules that have altered the
  29. * page. This variable should always be output first, before all other dynamic
  30. * content.
  31. * - $page: The rendered page content.
  32. * - $page_bottom: Final closing markup from any modules that have altered the
  33. * page. This variable should always be output last, after all other dynamic
  34. * content.
  35. * - $classes String of classes that can be used to style contextually through
  36. * CSS.
  37. *
  38. * @see template_preprocess()
  39. * @see template_preprocess_html()
  40. * @see template_process()
  41. *
  42. * @ingroup themeable
  43. */
  44. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
  45. "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
  46. <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; ?>>
  47. <head profile="<?php print $grddl_profile; ?>">
  48. <?php print $head; ?>
  49. <title><?php print $head_title; ?></title>
  50. <?php print $styles; ?>
  51. <?php print $scripts; ?>
  52. </head>
  53. <body class="<?php print $classes; ?>" <?php print $attributes;?>>
  54. <div id="skip-link">
  55. <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
  56. </div>
  57. <?php print $page_top; ?>
  58. <?php print $page; ?>
  59. <?php print $page_bottom; ?>
  60. </body>
  61. </html>