[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/themes/fusion/fusion_starter/ -> page.tpl.php.100610 (source)

   1  <?php
   2  // $Id: page.tpl.php,v 1.1.2.5 2010/04/08 07:02:59 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 print $local_styles; ?>
  21    <?php print $scripts; ?>
  22  </head>
  23  
  24  <body id="<?php print $body_id; ?>" class="<?php print $body_classes; ?>">
  25    <div id="page" class="page">
  26      <div id="page-inner" class="page-inner">
  27        <div id="skip">
  28          <a href="#main-content-area"><?php print t('Skip to Main Content Area'); ?></a>
  29        </div>
  30  
  31        <!-- header-top row: width = grid_width -->
  32        <?php print theme('grid_row', $header_top, 'header-top', 'full-width', $grid_width); ?>
  33  
  34        <!-- header-group row: width = grid_width -->
  35        <div id="header-group-wrapper" class="header-group-wrapper full-width">
  36          <div id="header-group" class="header-group row <?php print $grid_width; ?>">
  37            <div id="header-group-inner" class="header-group-inner inner clearfix">
  38              <?php print theme('grid_block', theme('links', $secondary_links), 'secondary-menu'); ?>
  39              <?php print theme('grid_block', $search_box, 'search-box'); ?>
  40  
  41              <?php if ($logo || $site_name || $site_slogan): ?>
  42              <div id="header-site-info" class="header-site-info block">
  43                <div id="header-site-info-inner" class="header-site-info-inner inner">
  44                  <?php if ($logo): ?>
  45                  <div id="logo">
  46                    <a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
  47                  </div>
  48                  <?php endif; ?>
  49                  <?php if ($site_name || $site_slogan): ?>
  50                  <div id="site-name-wrapper" class="clearfix">
  51                    <?php if ($site_name): ?>
  52                    <span id="site-name"><a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></span>
  53                    <?php endif; ?>
  54                    <?php if ($site_slogan): ?>
  55                    <span id="slogan"><?php print $site_slogan; ?></span>
  56                    <?php endif; ?>
  57                  </div><!-- /site-name-wrapper -->
  58                  <?php endif; ?>
  59                </div><!-- /header-site-info-inner -->
  60              </div><!-- /header-site-info -->
  61              <?php endif; ?>
  62  
  63              <?php print $header; ?>
  64            
  65            </div><!-- /header-group-inner -->
  66          </div><!-- /header-group -->
  67        </div><!-- /header-group-wrapper -->
  68  
  69        <!-- preface-top row: width = grid_width -->
  70        <?php print theme('grid_row', $preface_top, 'preface-top', 'full-width', $grid_width); ?>
  71  
  72        <!-- main row: width = grid_width -->
  73        <div id="main-wrapper" class="main-wrapper full-width">
  74          <div id="main" class="main row <?php print $grid_width; ?>">
  75            <div id="main-inner" class="main-inner inner clearfix">
  76              <?php print theme('grid_row', $sidebar_first, 'sidebar-first', 'nested', $sidebar_first_width); ?>
  77  
  78              <!-- main group: width = grid_width - sidebar_first_width -->
  79              <div id="main-group" class="main-group row nested <?php print $main_group_width; ?>">
  80                <div id="main-group-inner" class="main-group-inner inner">
  81                  <?php print theme('grid_row', $preface_bottom, 'preface-bottom', 'nested'); ?>
  82  
  83                  <div id="main-content" class="main-content row nested">
  84                    <div id="main-content-inner" class="main-content-inner inner">
  85                      <!-- content group: width = grid_width - (sidebar_first_width + sidebar_last_width) -->
  86                      <div id="content-group" class="content-group row nested <?php print $content_group_width; ?>">
  87                        <div id="content-group-inner" class="content-group-inner inner">
  88                          <?php print theme('grid_block', $breadcrumb, 'breadcrumbs'); ?>
  89  
  90                          <?php if ($content_top || $help || $messages): ?>
  91                          <div id="content-top" class="content-top row nested">
  92                            <div id="content-top-inner" class="content-top-inner inner">
  93                              <?php print theme('grid_block', $help, 'content-help'); ?>
  94                              <?php print theme('grid_block', $messages, 'content-messages'); ?>
  95                              <?php print $content_top; ?>
  96                            </div><!-- /content-top-inner -->
  97                          </div><!-- /content-top -->
  98                          <?php endif; ?>
  99  
 100                          <div id="content-region" class="content-region row nested">
 101                            <div id="content-region-inner" class="content-region-inner inner">
 102                              <a name="main-content-area" id="main-content-area"></a>
 103                              <?php print theme('grid_block', $tabs, 'content-tabs'); ?>
 104                              <div id="content-inner" class="content-inner block">
 105                                <div id="content-inner-inner" class="content-inner-inner inner">
 106                                  <?php if ($title): ?>
 107                                  <h1 class="title"><?php print $title; ?></h1>
 108                                  <?php endif; ?>
 109                                  <?php if ($content): ?>
 110                                  <div id="content-content" class="content-content">
 111                                    <?php print $content; ?>
 112                                    <?php print $feed_icons; ?>
 113                                  </div><!-- /content-content -->
 114                                  <?php endif; ?>
 115                                </div><!-- /content-inner-inner -->
 116                              </div><!-- /content-inner -->
 117                            </div><!-- /content-region-inner -->
 118                          </div><!-- /content-region -->
 119  
 120                          <?php print theme('grid_row', $content_bottom, 'content-bottom', 'nested'); ?>
 121                        </div><!-- /content-group-inner -->
 122                      </div><!-- /content-group -->
 123  
 124                      <?php print theme('grid_row', $sidebar_last, 'sidebar-last', 'nested', $sidebar_last_width); ?>
 125                    </div><!-- /main-content-inner -->
 126                  </div><!-- /main-content -->
 127  
 128                  <?php print theme('grid_row', $postscript_top, 'postscript-top', 'nested'); ?>
 129                </div><!-- /main-group-inner -->
 130              </div><!-- /main-group -->
 131            </div><!-- /main-inner -->
 132          </div><!-- /main -->
 133        </div><!-- /main-wrapper -->
 134  
 135        <!-- postscript-bottom row: width = grid_width -->
 136        <?php print theme('grid_row', $postscript_bottom, 'postscript-bottom', 'full-width', $grid_width); ?>
 137  
 138        <!-- footer row: width = grid_width -->
 139        <?php print theme('grid_row', $footer, 'footer', 'full-width', $grid_width); ?>
 140  
 141        <!-- footer-message row: width = grid_width -->
 142        <div id="footer-message-wrapper" class="footer-message-wrapper full-width">
 143          <div id="footer-message" class="footer-message row <?php print $grid_width; ?>">
 144            <div id="footer-message-inner" class="footer-message-inner inner clearfix">
 145              <?php print theme('grid_block', $footer_message, 'footer-message-text'); ?>
 146            </div><!-- /footer-message-inner -->
 147          </div><!-- /footer-message -->
 148        </div><!-- /footer-message-wrapper -->
 149  
 150      </div><!-- /page-inner -->
 151    </div><!-- /page -->
 152    <?php print $closure; ?>
 153  </body>
 154  </html>


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7