| 1 |
<?php
|
| 2 |
// $Id: maintenance-page.tpl.php,v 1.1.4.2 2008/11/28 06:14:30 andregriffin 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" xml:lang="<?php print $language->language ?>" 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 $scripts ?>
|
| 10 |
<!--[if lte IE 7]><?php print phptemplate_get_ie_styles(); ?><![endif]--><!--If Less Than or Equal (lte) to IE 7-->
|
| 11 |
</head>
|
| 12 |
<body<?php print phptemplate_body_class($left, $right); ?>>
|
| 13 |
|
| 14 |
<!-- Layout -->
|
| 15 |
<div id="wrapper">
|
| 16 |
<div id="header">
|
| 17 |
<?php print $header; ?>
|
| 18 |
|
| 19 |
<?php if ($logo): ?>
|
| 20 |
<a href="<?php print check_url($front_page); ?>" title="<?php print check_plain($site_name); ?>">
|
| 21 |
<img src="<?php print check_url($logo); ?>" alt="<?php print check_plain($site_name); ?>" id="logo" />
|
| 22 |
</a>
|
| 23 |
<?php endif; ?>
|
| 24 |
<?php print '<h1><a href="'. check_url($front_page) .'" title="'. check_plain($site_name) .'">';
|
| 25 |
if ($site_name) {
|
| 26 |
print '<span id="sitename">'. check_plain($site_name) .'</span>';
|
| 27 |
}
|
| 28 |
if ($site_slogan) {
|
| 29 |
print '<span id="siteslogan">'. check_plain($site_slogan) .'</span>';
|
| 30 |
}
|
| 31 |
print '</a></h1>';
|
| 32 |
?>
|
| 33 |
|
| 34 |
<div class="clear"></div>
|
| 35 |
</div> <!-- /#header -->
|
| 36 |
|
| 37 |
<div id="nav">
|
| 38 |
<?php if (isset($primary_links)) : ?>
|
| 39 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 40 |
<?php endif; ?>
|
| 41 |
<?php if (isset($secondary_links)) : ?>
|
| 42 |
<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
|
| 43 |
<?php endif; ?>
|
| 44 |
</div> <!-- /#nav -->
|
| 45 |
|
| 46 |
<div id="container">
|
| 47 |
|
| 48 |
<?php if ($left): ?>
|
| 49 |
<div id="sidebar-left" class="sidebar">
|
| 50 |
<?php print $left ?>
|
| 51 |
</div> <!-- /#sidebar-left -->
|
| 52 |
<?php endif; ?>
|
| 53 |
|
| 54 |
<div id="center">
|
| 55 |
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
|
| 56 |
<?php print $help; ?>
|
| 57 |
<?php print $messages; ?>
|
| 58 |
<?php print $content ?>
|
| 59 |
</div> <!-- /#center -->
|
| 60 |
|
| 61 |
<?php if ($right): ?>
|
| 62 |
<div id="sidebar-right" class="sidebar">
|
| 63 |
<?php print $right ?>
|
| 64 |
</div> <!-- /#sidebar-right -->
|
| 65 |
<?php endif; ?>
|
| 66 |
|
| 67 |
<div id="footer" class="clear">
|
| 68 |
<?php print $footer_message . $footer ?>
|
| 69 |
<?php print $feed_icons ?>
|
| 70 |
</div> <!-- /#footer -->
|
| 71 |
|
| 72 |
</div> <!-- /#container -->
|
| 73 |
<span class="clear"></span>
|
| 74 |
</div> <!-- /#wrapper -->
|
| 75 |
<!-- /layout -->
|
| 76 |
|
| 77 |
<?php print $closure ?>
|
| 78 |
|
| 79 |
</body>
|
| 80 |
</html>
|