| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: maintenance-page.tpl.php,v 1.1.2.4 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 <head> 6 <title><?php print $head_title; ?></title> 7 <?php print $head; ?> 8 <?php print $styles; ?> 9 <?php print $setting_styles; ?> 10 <!--[if IE 8]> 11 <?php print $ie8_styles; ?> 12 <![endif]--> 13 <!--[if IE 7]> 14 <?php print $ie7_styles; ?> 15 <![endif]--> 16 <!--[if lte IE 6]> 17 <?php print $ie6_styles; ?> 18 <![endif]--> 19 <?php print $local_styles; ?> 20 <?php print $scripts; ?> 21 </head> 22 23 <body id="<?php print $body_id; ?>" class="<?php print $body_classes; ?>"> 24 <div id="page" class="page"> 25 <div id="page-inner" class="page-inner"> 26 <div id="skip"> 27 <a href="#main-content-area"><?php print t('Skip to Main Content Area'); ?></a> 28 </div> 29 30 <!-- header-group row: width = grid_width --> 31 <div id="header-group-wrapper" class="header-group-wrapper full-width"> 32 <div id="header-group" class="header-group row <?php print $grid_width; ?>"> 33 <div id="header-group-inner" class="header-group-inner inner"> 34 <?php if ($logo || $site_name || $site_slogan): ?> 35 <div id="header-site-info" class="header-site-info block"> 36 <div id="header-site-info-inner" class="header-site-info-inner inner"> 37 <?php if ($logo): ?> 38 <div id="logo"> 39 <a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a> 40 </div> 41 <?php endif; ?> 42 <?php if ($site_name): ?> 43 <span id="site-name"><a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></span> 44 <?php endif; ?> 45 <?php if ($site_slogan): ?> 46 <span id="slogan"><?php print $site_slogan; ?></span> 47 <?php endif; ?> 48 </div><!-- /header-site-info-inner --> 49 </div><!-- /header-site-info --> 50 <?php endif; ?> 51 </div><!-- /header-group-inner --> 52 </div><!-- /header-group --> 53 </div><!-- /header-group-wrapper --> 54 55 <!-- main row: width = grid_width --> 56 <div id="main-wrapper" class="main-wrapper full-width"> 57 <div id="main" class="main row <?php print $grid_width; ?>"> 58 <div id="main-inner" class="main-inner inner"> 59 <div id="content-region" class="content-region row nested"> 60 <div id="content-region-inner" class="content-region-inner inner"> 61 <a name="main-content" id="main-content"></a> 62 <div id="content-inner" class="content-inner block"> 63 <div id="content-inner-inner" class="content-inner-inner inner"> 64 <?php if ($title): ?> 65 <h1 class="title"><?php print $title; ?></h1> 66 <?php endif; ?> 67 <?php if ($content): ?> 68 <div id="content-content" class="content-content"> 69 <?php print $content; ?> 70 </div><!-- /content-content --> 71 <?php endif; ?> 72 </div><!-- /content-inner-inner --> 73 </div><!-- /content-inner --> 74 </div><!-- /content-region-inner --> 75 </div><!-- /content-region --> 76 </div><!-- /main-inner --> 77 </div><!-- /main --> 78 </div><!-- /main-wrapper --> 79 80 </div><!-- /page-inner --> 81 </div><!-- /page --> 82 <?php print $closure; ?> 83 </body> 84 </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 |