html.tpl.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display the HTML structure of a single page.
  5. *
  6. * Variables:
  7. * - $css: An array of CSS files for the current page.
  8. * - $language: (object) The language the site is being displayed in.
  9. * $language->language contains its textual representation.
  10. * $language->dir contains the language direction. It will either be 'ltr' or
  11. * 'rtl'.
  12. * - $html_attributes: String of attributes for the html element. It can be
  13. * manipulated through the variable $html_attributes_array from preprocess
  14. * functions.
  15. * - $html_attributes_array: An array of attribute values for the HTML element.
  16. * It is flattened into a string within the variable $html_attributes.
  17. * - $body_attributes: String of attributes for the BODY element. It can be
  18. * manipulated through the variable $body_attributes_array from preprocess
  19. * functions.
  20. * - $body_attributes_array: An array of attribute values for the BODY element.
  21. * It is flattened into a string within the variable $body_attributes.
  22. * - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document.
  23. * - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data.
  24. * - $head_title: A modified version of the page title, for use in the TITLE
  25. * tag.
  26. * - $head_title_array: (array) An associative array containing the string parts
  27. * that were used to generate the $head_title variable, already prepared to be
  28. * output as TITLE tag. The key/value pairs may contain one or more of the
  29. * following, depending on conditions:
  30. * - title: The title of the current page, if any.
  31. * - name: The name of the site.
  32. * - slogan: The slogan of the site, if any, and if there is no title.
  33. * - $head: Markup for the HEAD section (including meta tags, keyword tags, and
  34. * so on).
  35. * - $styles: Style tags necessary to import all CSS files for the page.
  36. * - $scripts: Script tags necessary to load the JavaScript files and settings
  37. * for the page.
  38. * - $page_top: Initial markup from any modules that have altered the
  39. * page. This variable should always be output first, before all other dynamic
  40. * content.
  41. * - $page: The rendered page content.
  42. * - $page_bottom: Final closing markup from any modules that have altered the
  43. * page. This variable should always be output last, after all other dynamic
  44. * content.
  45. * - $classes String of classes that can be used to style contextually through
  46. * CSS.
  47. *
  48. * @see bootstrap_preprocess_html()
  49. * @see template_preprocess()
  50. * @see template_preprocess_html()
  51. * @see template_process()
  52. *
  53. * @ingroup templates
  54. */
  55. ?><!DOCTYPE html>
  56. <html<?php print $html_attributes;?><?php print $rdf_namespaces;?>>
  57. <head>
  58. <link rel="profile" href="<?php print $grddl_profile; ?>" />
  59. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  60. <?php print $head; ?>
  61. <title><?php print $head_title; ?></title>
  62. <?php print $styles; ?>
  63. <!-- HTML5 element support for IE6-8 -->
  64. <!--[if lt IE 9]>
  65. <script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  66. <![endif]-->
  67. <?php print $scripts; ?>
  68. </head>
  69. <body<?php print $body_attributes; ?>>
  70. <div id="skip-link">
  71. <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
  72. </div>
  73. <?php print $page_top; ?>
  74. <?php print $page; ?>
  75. <?php print $page_bottom; ?>
  76. </body>
  77. </html>