cms/drupal/themes/seven/maintenance-page.tpl.php
changeset 541 e756a8c72c3d
equal deleted inserted replaced
540:07239de796bb 541:e756a8c72c3d
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       
     2   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
       
     4   <head>
       
     5     <title><?php print $head_title; ?></title>
       
     6     <?php print $head; ?>
       
     7     <?php print $styles; ?>
       
     8     <?php print $scripts; ?>
       
     9   </head>
       
    10   <body class="<?php print $classes; ?>">
       
    11 
       
    12   <?php print $page_top; ?>
       
    13 
       
    14   <div id="branding">
       
    15     <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
       
    16   </div>
       
    17 
       
    18   <div id="page">
       
    19 
       
    20     <?php if ($sidebar_first): ?>
       
    21       <div id="sidebar-first" class="sidebar">
       
    22         <?php if ($logo): ?>
       
    23           <img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" />
       
    24         <?php endif; ?>
       
    25         <?php print $sidebar_first ?>
       
    26       </div>
       
    27     <?php endif; ?>
       
    28 
       
    29     <div id="content" class="clearfix">
       
    30       <?php if ($messages): ?>
       
    31         <div id="console"><?php print $messages; ?></div>
       
    32       <?php endif; ?>
       
    33       <?php if ($help): ?>
       
    34         <div id="help">
       
    35           <?php print $help; ?>
       
    36         </div>
       
    37       <?php endif; ?>
       
    38       <?php print $content; ?>
       
    39     </div>
       
    40 
       
    41   </div>
       
    42 
       
    43   <?php print $page_bottom; ?>
       
    44 
       
    45   </body>
       
    46 </html>