5 * @file maintenance-page.tpl.php
7 * Theme implementation to display a single Drupal page while off-line.
9 * All the available variables are mirrored in page.tpl.php. Some may be left
10 * blank but they are provided for consistency.
13 * @see template_preprocess()
14 * @see template_preprocess_maintenance_page()
17 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
18 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="<?php print $language->language; ?>" lang
="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
21 <title
><?php
print $head_title; ?
></title
>
23 <?php
print $styles; ?
>
24 <?php
print $scripts; ?
>
26 <body
class="<?php print $body_classes; ?>">
30 <div id
="skip-nav"><a href
="#content"><?php
print t('Skip to Main Content'); ?
></a
></div
>
34 <?php
if (!empty($logo)): ?
>
35 <a href
="<?php print $base_path; ?>" title
="<?php print t('Home'); ?>" rel
="home">
36 <img src
="<?php print $logo; ?>" alt
="<?php print t('Home'); ?>" id
="logo" />
40 <div id
="name-and-slogan">
42 <?php
if (!empty($site_name)): ?
>
43 <div id
="site-name"><strong
>
44 <a href
="<?php print $base_path; ?>" title
="<?php print t('Home'); ?>" rel
="home">
45 <?php
print $site_name; ?
>
50 <?php
if (!empty($site_slogan)): ?
>
51 <div id
="site-slogan">
52 <?php
print $site_slogan; ?
>
56 </div
> <!-- /name
-and
-slogan
-->
58 </div
> <!-- /logo
-title
-->
60 <?php
if (!empty($header)): ?
>
61 <div id
="header-region">
62 <?php
print $header; ?
>
63 </div
> <!-- /header-region
-->
66 </div
> <!-- /header -->
68 <div id
="container" class="clear-block">
70 <?php
if (!empty($left)): ?
>
71 <div id
="sidebar-left" class="column sidebar">
73 </div
> <!-- /sidebar
-left
-->
76 <div id
="main" class="column"><div id
="squeeze" class="clear-block">
77 <?php
if (!empty($content_top)): ?
>
78 <div id
="content-top"><?php
print $content_top; ?
></div
>
81 <?php
if (!empty($title)): ?
>
82 <h1
class="title"><?php
print $title; ?
></h1
>
84 <?php
print $messages; ?
>
85 <?php
print $content; ?
>
86 </div
> <!-- /content
-->
87 <?php
if (!empty($content_bottom)): ?
>
88 <div id
="content-bottom"><?php
print $content_bottom; ?
></div
>
90 </div
></div
> <!-- /squeeze
/main
-->
92 <?php
if (!empty($right)): ?
>
93 <div id
="sidebar-right" class="column sidebar">
94 <?php
print $right; ?
>
95 </div
> <!-- /sidebar
-right
-->
98 </div
> <!-- /container
-->
100 <?php
if ($footer || $footer_message): ?
>
101 <div id
="footer-wrapper"><div id
="footer">
103 <?php
if ($footer_message): ?
>
104 <div id
="footer-message"><?php
print $footer_message; ?
></div
>
107 <?php
print $footer; ?
>
109 </div
></div
> <!-- /#footer, /#footer-wrapper -->
112 </div
> <!-- /page
-->
114 <?php
if ($closure_region): ?
>
115 <div id
="closure-blocks"><?php
print $closure_region; ?
></div
>
118 <?php
print $closure; ?
>