4 * Zen theme's implementation to display a single Drupal page while offline.
6 * All the available variables are mirrored in html.tpl.php and page.tpl.php.
7 * Some may be blank but they are provided for consistency.
9 * @see template_preprocess()
10 * @see template_preprocess_maintenance_page()
13 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
14 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
15 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="<?php print $language->language; ?>" lang
="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
18 <title
><?php
print $head_title; ?
></title
>
20 <?php
print $styles; ?
>
21 <?php
print $scripts; ?
>
23 <body
class="<?php print $classes; ?>">
25 <div id
="page-wrapper"><div id
="page">
27 <div id
="header"><div
class="section clearfix">
30 <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
>
33 <?php
if ($site_name || $site_slogan): ?
>
34 <div id
="name-and-slogan">
35 <?php
if ($site_name): ?
>
36 <div id
="site-name"><strong
>
37 <a href
="<?php print $base_path; ?>" title
="<?php print t('Home'); ?>" rel
="home">
38 <span
><?php
print $site_name; ?
></span
>
42 <?php
if ($site_slogan): ?
>
43 <div id
="site-slogan"><?php
print $site_slogan; ?
></div
>
45 </div
><!-- /#name-and-slogan -->
48 <?php
print $header; ?
>
50 </div
></div
><!-- /.section
, /#header -->
52 <div id
="main-wrapper"><div id
="main" class="clearfix<?php if ($navigation) { print ' with-navigation'; } ?>">
54 <div id
="content" class="column"><div
class="section">
56 <?php
print $highlighted; ?
>
59 <h1
class="title"><?php
print $title; ?
></h1
>
61 <?php
print $messages; ?
>
63 <?php
print $content; ?
>
65 </div
></div
><!-- /.section
, /#content -->
67 <?php
if ($navigation): ?
>
68 <div id
="navigation"><div
class="section clearfix">
70 <?php
print $navigation; ?
>
72 </div
></div
><!-- /.section
, /#navigation -->
75 <?php
print $sidebar_first; ?
>
77 <?php
print $sidebar_second; ?
>
79 </div
></div
><!-- /#main, /#main-wrapper -->
81 <?php
print $footer; ?
>
83 </div
></div
><!-- /#page, /#page-wrapper -->
85 <?php
print $bottom; ?
>