| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: page.tpl.php,v 1.1.2.3 2009/12/02 00:47:46 sociotech Exp $ 3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>"> 5 6 <head> 7 <title><?php print $head_title; ?></title> 8 <?php print $head; ?> 9 <?php print $styles; ?> 10 <?php print $setting_styles; ?> 11 <!--[if IE 8]> 12 <?php print $ie8_styles; ?> 13 <![endif]--> 14 <!--[if IE 7]> 15 <?php print $ie7_styles; ?> 16 <![endif]--> 17 <!--[if lte IE 6]> 18 <?php print $ie6_styles; ?> 19 <![endif]--> 20 <?php if ($local_styles): ?> 21 <?php print $local_styles; ?> 22 <?php endif; ?> 23 <?php print $scripts; ?> 24 </head> 25 26 <body id="<?php print $body_id; ?>" class="<?php print $body_classes; ?>" > 27 <div id="page" class="page"> 28 <?php print $skinr; ?> 29 <div id="page-inner" class="page-inner"> 30 <div id="skip"> 31 <a href="#main-content-area"><?php print t('Skip to Main Content Area'); ?></a> 32 </div> 33 34 <!-- header-top row: width = grid_width --> 35 <?php print theme('grid_row', $header_top, 'header-top', 'full-width', $grid_width); ?> 36 37 <!-- header-group row: width = grid_width --> 38 <div id="header-group-wrapper" class="header-group-wrapper full-width"> 39 <div id="header-group" class="header-group row <?php print $grid_width; ?>"> 40 <div id="header-group-inner" class="header-group-inner inner"> 41 <?php print theme('grid_block', theme('links', $secondary_links), 'secondary-menu'); ?> 42 <?php print theme('grid_block', $search_box, 'search-box'); ?> 43 44 <?php if ($logo || $site_name || $site_slogan): ?> 45 <div id="header-site-info" class="header-site-info block"> 46 <div id="header-site-info-inner" class="header-site-info-inner inner"> 47 <?php if ($logo): ?> 48 <div id="logo"> 49 <a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><img src="<?php print logo; ?>" alt="<?php print t('Home'); ?>" /></a> 50 <?php print theme('grid_block', $primary_links_tree, 'primary-menu'); ?> 51 52 </div> 53 <?php endif; ?> 54 <?php if ($site_name): ?> 55 <span id="site-name"><a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></span> 56 <?php endif; ?> 57 <?php if ($site_slogan): ?> 58 <span id="slogan"><?php print $site_slogan; ?></span> 59 <?php endif; ?> 60 </div><!-- /header-site-info-inner --> 61 </div><!-- /header-site-info --> 62 <?php endif; ?> 63 64 <?php print $header; ?> 65 66 </div><!-- /header-group-inner --> 67 </div><!-- /header-group --> 68 </div><!-- /header-group-wrapper --> 69 70 <!-- preface-top row: width = grid_width --> 71 <?php print theme('grid_row', $preface_top, 'preface-top', 'full-width', $grid_width); ?> 72 73 <!-- main row: width = grid_width --> 74 <div id="main-wrapper" class="main-wrapper full-width"> 75 <div id="main" class="main row <?php print $grid_width; ?>"> 76 <div id="main-inner" class="main-inner inner"> 77 <?php print theme('grid_row', $sidebar_first, 'sidebar-first', 'nested', $sidebar_first_width); ?> 78 79 <!-- main group: width = grid_width - sidebar_first_width --> 80 <div id="main-group" class="main-group row nested <?php print $main_group_width; ?>"> 81 <div id="main-group-inner" class="main-group-inner inner"> 82 <?php print theme('grid_row', $preface_bottom, 'preface-bottom', 'nested'); ?> 83 84 <div id="main-content" class="main-content row nested"> 85 <div id="main-content-inner" class="main-content-inner inner"> 86 <!-- content group: width = grid_width - (sidebar_first_width + sidebar_last_width) --> 87 <div id="content-group" class="content-group row nested <?php print $content_group_width; ?>"> 88 <div id="content-group-inner" class="content-group-inner inner"> 89 <?php print theme('grid_block', $breadcrumb, 'breadcrumbs'); ?> 90 91 <?php if ($content_top || $help || $messages): ?> 92 <div id="content-top" class="content-top row nested"> 93 <div id="content-top-inner" class="content-top-inner inner"> 94 <?php print theme('grid_block', $help, 'content-help'); ?> 95 <?php print theme('grid_block', $messages, 'content-messages'); ?> 96 <?php print $content_top; ?> 97 </div><!-- /content-top-inner --> 98 </div><!-- /content-top --> 99 <?php endif; ?> 100 101 <div id="content-region" class="content-region row nested"> 102 <div id="content-region-inner" class="content-region-inner inner"> 103 <a name="main-content-area" id="main-content-area"></a> 104 <?php print theme('grid_block', $tabs, 'content-tabs'); ?> 105 <div id="content-inner" class="content-inner block"> 106 <div id="content-inner-inner" class="content-inner-inner inner"> 107 <?php if ($title): ?> 108 <h1 class="title"><?php print $title; ?></h1> 109 <?php endif; ?> 110 <?php if ($content): ?> 111 <div id="content-content" class="content-content"> 112 <?php print $content; ?> 113 <?php print $feed_icons; ?> 114 </div><!-- /content-content --> 115 <?php endif; ?> 116 </div><!-- /content-inner-inner --> 117 </div><!-- /content-inner --> 118 </div><!-- /content-region-inner --> 119 </div><!-- /content-region --> 120 121 <?php print theme('grid_row', $content_bottom, 'content-bottom', 'nested'); ?> 122 </div><!-- /content-group-inner --> 123 </div><!-- /content-group --> 124 125 <?php print theme('grid_row', $sidebar_last, 'sidebar-last', 'nested', $sidebar_last_width); ?> 126 </div><!-- /main-content-inner --> 127 </div><!-- /main-content --> 128 129 <?php print theme('grid_row', $postscript_top, 'postscript-top', 'nested'); ?> 130 </div><!-- /main-group-inner --> 131 </div><!-- /main-group --> 132 </div><!-- /main-inner --> 133 </div><!-- /main --> 134 </div><!-- /main-wrapper --> 135 136 <!-- postscript-bottom row: width = grid_width --> 137 <?php print theme('grid_row', $postscript_bottom, 'postscript-bottom', 'full-width', $grid_width); ?> 138 139 <!-- footer row: width = grid_width --> 140 <?php print theme('grid_row', $footer, 'footer', 'full-width', $grid_width); ?> 141 142 <!-- footer-message row: width = grid_width --> 143 <div id="footer-message-wrapper" class="footer-message-wrapper full-width"> 144 <div id="footer-message" class="footer-message row <?php print $grid_width; ?>"> 145 <div id="footer-message-inner" class="footer-message-inner inner"> 146 <?php print theme('grid_block', $footer_message, 'footer-message-text'); ?> 147 </div><!-- /footer-message-inner --> 148 </div><!-- /footer-message --> 149 </div><!-- /footer-message-wrapper --> 150 151 </div><!-- /page-inner --> 152 </div><!-- /page --> 153 <?php print $closure; ?> 154 </body> 155 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |