2009-09-15 17:10:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Default theme implementation to display the basic html structure of a single
|
|
|
|
* Drupal page.
|
|
|
|
*
|
|
|
|
* Variables:
|
|
|
|
* - $css: An array of CSS files for the current page.
|
|
|
|
* - $language: (object) The language the site is being displayed in.
|
2012-01-10 15:29:08 +00:00
|
|
|
* $language->langcode contains its textual representation.
|
2011-10-27 17:34:00 +00:00
|
|
|
* $language->dir contains the language direction.
|
|
|
|
* It will either be 'ltr' or 'rtl'.
|
2010-11-24 03:30:59 +00:00
|
|
|
* - $head_title: A modified version of the page title, for use in the TITLE
|
|
|
|
* tag.
|
|
|
|
* - $head_title_array: (array) An associative array containing the string parts
|
|
|
|
* that were used to generate the $head_title variable, already prepared to be
|
|
|
|
* output as TITLE tag. The key/value pairs may contain one or more of the
|
|
|
|
* following, depending on conditions:
|
|
|
|
* - title: The title of the current page, if any.
|
|
|
|
* - name: The name of the site.
|
|
|
|
* - slogan: The slogan of the site, if any, and if there is no title.
|
2009-09-15 17:10:39 +00:00
|
|
|
* - $head: Markup for the HEAD section (including meta tags, keyword tags, and
|
|
|
|
* so on).
|
2012-04-26 00:02:24 +00:00
|
|
|
* - $default_mobile_metatags: TRUE if default mobile metatags for responsive
|
|
|
|
* design should be displayed.
|
2009-09-15 17:10:39 +00:00
|
|
|
* - $styles: Style tags necessary to import all CSS files for the page.
|
|
|
|
* - $scripts: Script tags necessary to load the JavaScript files and settings
|
|
|
|
* for the page.
|
|
|
|
* - $page_top: Initial markup from any modules that have altered the
|
|
|
|
* page. This variable should always be output first, before all other dynamic
|
|
|
|
* content.
|
|
|
|
* - $page: The rendered page content.
|
|
|
|
* - $page_bottom: Final closing markup from any modules that have altered the
|
|
|
|
* page. This variable should always be output last, after all other dynamic
|
|
|
|
* content.
|
|
|
|
* - $classes String of classes that can be used to style contextually through
|
|
|
|
* CSS.
|
|
|
|
*
|
|
|
|
* @see template_preprocess()
|
|
|
|
* @see template_preprocess_html()
|
|
|
|
* @see template_process()
|
|
|
|
*/
|
2011-10-27 17:34:00 +00:00
|
|
|
?><!DOCTYPE html>
|
|
|
|
<html<?php print $html_attributes; ?>>
|
|
|
|
<head>
|
|
|
|
<?php print $head; ?>
|
2012-04-26 00:02:24 +00:00
|
|
|
<?php if ($default_mobile_metatags): ?>
|
|
|
|
<meta name="MobileOptimized" content="width" />
|
|
|
|
<meta name="HandheldFriendly" content="true" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<meta http-equiv="cleartype" content="on" />
|
|
|
|
<?php endif; ?>
|
2011-10-27 17:34:00 +00:00
|
|
|
<title><?php print $head_title; ?></title>
|
|
|
|
<?php print $styles; ?>
|
|
|
|
<?php print $scripts; ?>
|
|
|
|
</head>
|
|
|
|
<body class="<?php print $classes; ?>" <?php print $body_attributes;?>>
|
|
|
|
<div id="skip-link">
|
|
|
|
<a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
|
|
|
|
</div>
|
|
|
|
<?php print $page_top; ?>
|
|
|
|
<?php print $page; ?>
|
|
|
|
<?php print $page_bottom; ?>
|
|
|
|
</body>
|
2009-09-15 17:10:39 +00:00
|
|
|
</html>
|