Chris@0: language contains its textual representation. Chris@0: * $language->dir contains the language direction. It will either be 'ltr' or 'rtl'. Chris@0: * - $head_title: A modified version of the page title, for use in the TITLE tag. Chris@0: * - $head: Markup for the HEAD section (including meta tags, keyword tags, and Chris@0: * so on). Chris@0: * - $styles: Style tags necessary to import all CSS files for the page. Chris@0: * - $scripts: Script tags necessary to load the JavaScript files and settings Chris@0: * for the page. Chris@0: * - $body_classes: A set of CSS classes for the BODY tag. This contains flags Chris@0: * indicating the current layout (multiple columns, single column), the current Chris@0: * path, whether the user is logged in, and so on. Chris@0: * - $body_classes_array: An array of the body classes. This is easier to Chris@0: * manipulate then the string in $body_classes. Chris@0: * - $node: Full node object. Contains data that may not be safe. This is only Chris@0: * available if the current page is on the node's primary url. Chris@0: * Chris@0: * Site identity: Chris@0: * - $front_page: The URL of the front page. Use this instead of $base_path, Chris@0: * when linking to the front page. This includes the language domain or prefix. Chris@0: * - $logo: The path to the logo image, as defined in theme configuration. Chris@0: * - $site_name: The name of the site, empty when display has been disabled Chris@0: * in theme settings. Chris@0: * - $site_slogan: The slogan of the site, empty when display has been disabled Chris@0: * in theme settings. Chris@0: * - $mission: The text of the site mission, empty when display has been disabled Chris@0: * in theme settings. Chris@0: * Chris@0: * Navigation: Chris@0: * - $search_box: HTML to display the search box, empty if search has been disabled. Chris@0: * - $primary_links (array): An array containing primary navigation links for the Chris@0: * site, if they have been configured. Chris@0: * - $secondary_links (array): An array containing secondary navigation links for Chris@0: * the site, if they have been configured. Chris@0: * Chris@0: * Page content (in order of occurrance in the default page.tpl.php): Chris@0: * - $left: The HTML for the left sidebar. Chris@0: * Chris@0: * - $breadcrumb: The breadcrumb trail for the current page. Chris@0: * - $title: The page title, for use in the actual HTML content. Chris@0: * - $help: Dynamic help text, mostly for admin pages. Chris@0: * - $messages: HTML for status and error messages. Should be displayed prominently. Chris@0: * - $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the view Chris@0: * and edit tabs when displaying a node). Chris@0: * Chris@0: * - $content: The main content of the current Drupal page. Chris@0: * Chris@0: * - $right: The HTML for the right sidebar. Chris@0: * Chris@0: * Footer/closing data: Chris@0: * - $feed_icons: A string of all feed icons for the current page. Chris@0: * - $footer_message: The footer message as defined in the admin settings. Chris@0: * - $footer : The footer region. Chris@0: * - $closure: Final closing markup from any modules that have altered the page. Chris@0: * This variable should always be output last, after all other dynamic content. Chris@0: * Chris@0: * @see template_preprocess() Chris@0: * @see template_preprocess_page() Chris@0: */ Chris@0: ?> Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: <?php print $head_title; ?> Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0:
Chris@0: Chris@0: Chris@0: Chris@0:
Chris@0: Chris@0: Chris@0: Chris@0: Chris@0:
Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0:
Chris@0: Chris@0: Chris@0:
Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: