html.tpl.php 3.2 KB

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