Projet

Général

Profil

Paste
Télécharger (1,33 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adminimal_theme / templates / maintenance-page.tpl.php @ 87dbc3bf

1
<?php
2
/**
3
* @file
4
* Maintenance page template.
5
*/
6
?>
7

    
8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
9
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
10
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
11
  <head>
12
    <title><?php print $head_title; ?></title>
13
    <?php print $head; ?>
14
    <?php print $styles; ?>
15
    <?php print $scripts; ?>
16
  </head>
17
  <body class="<?php print $classes; ?>">
18

    
19
  <?php print $page_top; ?>
20

    
21
  <div id="branding">
22
    <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
23
  </div>
24

    
25
  <div id="page">
26

    
27
    <?php if ($sidebar_first): ?>
28
      <div id="sidebar-first" class="sidebar">
29
        <?php if ($logo): ?>
30
          <img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" />
31
        <?php endif; ?>
32
        <?php print $sidebar_first ?>
33
      </div>
34
    <?php endif; ?>
35

    
36
    <div id="content" class="clearfix">
37
      <?php if ($messages): ?>
38
        <div id="console"><?php print $messages; ?></div>
39
      <?php endif; ?>
40
      <?php if ($help): ?>
41
        <div id="help">
42
          <?php print $help; ?>
43
        </div>
44
      <?php endif; ?>
45
      <?php print $content; ?>
46
    </div>
47

    
48
  </div>
49

    
50
  <?php print $page_bottom; ?>
51

    
52
  </body>
53
</html>