| 1 |
<?php
|
| 2 |
// $Id: maintenance-page.tpl.php,v 1.2 2008/06/29 18:50:39 shannonlucas Exp $
|
| 3 |
/**
|
| 4 |
* @file Provides the maintenance notice page.
|
| 5 |
*/
|
| 6 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 7 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 8 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 9 |
<head>
|
| 10 |
<title><?php print $head_title ?></title>
|
| 11 |
<?php print $head ?>
|
| 12 |
<?php print $styles ?>
|
| 13 |
<?php print $scripts ?>
|
| 14 |
<!--[if IE]>
|
| 15 |
<?php print phptemplate_get_ie_styles() . "\n"; ?>
|
| 16 |
<![endif]-->
|
| 17 |
</head>
|
| 18 |
<body class="maintenance">
|
| 19 |
<div id="page" class="container_16">
|
| 20 |
<?php if ($admin_header): ?>
|
| 21 |
<div id="admin-header" class="grid_16"><?php print $admin_header; ?></div>
|
| 22 |
<?php endif; ?>
|
| 23 |
<div id="header">
|
| 24 |
<div id="headerTitle" class="grid_12">
|
| 25 |
<h1><a href="<?php print check_url($front_page); ?>" title="<?php print check_plain($site_name); ?>"><?php print nitobe_alt_word_text(check_plain($site_name)); ?></a></h1>
|
| 26 |
</div>
|
| 27 |
<div id="search-top" class="grid_4"> </div>
|
| 28 |
<?php if ($site_slogan): ?>
|
| 29 |
<div class="clear"></div>
|
| 30 |
<div id="site-slogan" class="grid_16">
|
| 31 |
<?php print check_plain($site_slogan); ?>
|
| 32 |
</div>
|
| 33 |
<?php endif; ?>
|
| 34 |
<div class="clear"></div>
|
| 35 |
<div id="masthead-top" class="rule"> </div>
|
| 36 |
<div id="masthead" class="grid_16"></div>
|
| 37 |
</div><!-- /#header -->
|
| 38 |
<div class="rule-top"> </div>
|
| 39 |
|
| 40 |
<div id="center">
|
| 41 |
<?php print $breadcrumb; ?>
|
| 42 |
<?php if ($title): ?>
|
| 43 |
<div class="headline grid_16 alpha omega">
|
| 44 |
<h2 class="grid_8 alpha"><?php print $title; ?></h2>
|
| 45 |
</div>
|
| 46 |
<div class="clear"></div>
|
| 47 |
<?php endif; ?>
|
| 48 |
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
| 49 |
<?php print $help; ?>
|
| 50 |
<div class="clear-block">
|
| 51 |
<?php print $content ?>
|
| 52 |
</div>
|
| 53 |
</div> <!-- /#center -->
|
| 54 |
|
| 55 |
<div class="clear"> </div>
|
| 56 |
<div id="bottomPad"> </div>
|
| 57 |
<div class="clear"> </div>
|
| 58 |
<br />
|
| 59 |
<div class="rule"> </div>
|
| 60 |
<div id="footer">
|
| 61 |
<?php print $footer_message . $footer ?>
|
| 62 |
</div>
|
| 63 |
</div> <!-- /container -->
|
| 64 |
<?php print $closure; ?>
|
| 65 |
</body>
|
| 66 |
</html>
|