2012-02-23 02:34:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file maintenance-page.tpl.php
|
|
|
|
*
|
|
|
|
* Theme implementation to display a single Drupal page while off-line.
|
|
|
|
*
|
|
|
|
* All the available variables are mirrored in page.tpl.php. Some may be left
|
|
|
|
* blank but they are provided for consistency.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @see template_preprocess()
|
|
|
|
* @see template_preprocess_maintenance_page()
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title><?php print $head_title; ?></title>
|
|
|
|
<?php print $head; ?>
|
|
|
|
<?php print $styles; ?>
|
|
|
|
<?php print $scripts; ?>
|
|
|
|
</head>
|
|
|
|
<body class="<?php print $classes; ?>">
|
|
|
|
|
|
|
|
<div id="page-wrapper"><div id="page">
|
|
|
|
|
|
|
|
<div id="header"><div class="section clearfix">
|
|
|
|
|
|
|
|
<?php if ($logo): ?>
|
|
|
|
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ($site_name || $site_slogan): ?>
|
|
|
|
<div id="name-and-slogan">
|
|
|
|
<?php if ($site_name): ?>
|
|
|
|
<div id="site-name"><strong>
|
|
|
|
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home">
|
|
|
|
<?php print $site_name; ?>
|
|
|
|
</a>
|
|
|
|
</strong></div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ($site_slogan): ?>
|
|
|
|
<div id="site-slogan"><?php print $site_slogan; ?></div>
|
|
|
|
<?php endif; ?>
|
2012-09-21 12:48:52 +00:00
|
|
|
</div><!-- /#name-and-slogan -->
|
2012-02-23 02:34:48 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php print $header; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /.section, /#header -->
|
2012-02-23 02:34:48 +00:00
|
|
|
|
|
|
|
<div id="main-wrapper"><div id="main" class="clearfix<?php if ($navigation) { print ' with-navigation'; } ?>">
|
|
|
|
|
|
|
|
<div id="content" class="column"><div class="section">
|
|
|
|
|
|
|
|
<?php print $highlight; ?>
|
|
|
|
|
|
|
|
<?php if ($title): ?>
|
|
|
|
<h1 class="title"><?php print $title; ?></h1>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ($messages): print $messages; endif; ?>
|
|
|
|
|
|
|
|
<?php print $content_top; ?>
|
|
|
|
|
|
|
|
<div id="content-area">
|
|
|
|
<?php print $content; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php print $content_bottom; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /.section, /#content -->
|
2012-02-23 02:34:48 +00:00
|
|
|
|
|
|
|
<?php if ($navigation): ?>
|
|
|
|
<div id="navigation"><div class="section clearfix">
|
|
|
|
|
|
|
|
<?php print $navigation; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /.section, /#navigation -->
|
2012-02-23 02:34:48 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php print $sidebar_first; ?>
|
|
|
|
|
|
|
|
<?php print $sidebar_second; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /#main, /#main-wrapper -->
|
2012-02-23 02:34:48 +00:00
|
|
|
|
|
|
|
<?php if ($footer || $footer_message): ?>
|
|
|
|
<div id="footer"><div class="section">
|
|
|
|
|
|
|
|
<?php if ($footer_message): ?>
|
|
|
|
<div id="footer-message"><?php print $footer_message; ?></div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php print $footer; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /.section, /#footer -->
|
2012-02-23 02:34:48 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2012-09-21 12:48:52 +00:00
|
|
|
</div></div><!-- /#page, /#page-wrapper -->
|
2012-02-23 02:34:48 +00:00
|
|
|
|
|
|
|
<?php print $page_closure; ?>
|
|
|
|
|
|
|
|
<?php print $closure; ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|