Projet

Général

Profil

Paste
Télécharger (2,89 ko) Statistiques
| Branche: | Révision:

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

1
<?php
2
/**
3
 * @file
4
 * Returns the HTML for a single Drupal page while offline.
5
 *
6
 * Complete documentation for this file is available online.
7
 * @see https://drupal.org/node/1728174
8
 */
9
?><!DOCTYPE html>
10
<!--[if IEMobile 7]><html class="iem7" <?php print $html_attributes; ?>><![endif]-->
11
<!--[if lte IE 6]><html class="lt-ie9 lt-ie8 lt-ie7" <?php print $html_attributes; ?>><![endif]-->
12
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8" <?php print $html_attributes; ?>><![endif]-->
13
<!--[if IE 8]><html class="lt-ie9" <?php print $html_attributes; ?>><![endif]-->
14
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--><html <?php print $html_attributes; ?>><!--<![endif]-->
15

    
16
<head>
17
  <?php print $head; ?>
18
  <title><?php print $head_title; ?></title>
19

    
20
  <?php if ($default_mobile_metatags): ?>
21
    <meta name="MobileOptimized" content="width">
22
    <meta name="HandheldFriendly" content="true">
23
    <meta name="viewport" content="width=device-width">
24
  <?php endif; ?>
25
  <meta http-equiv="cleartype" content="on">
26

    
27
  <?php print $styles; ?>
28
  <?php print $scripts; ?>
29
  <?php if ($add_respond_js): ?>
30
    <!--[if lt IE 9]>
31
    <script src="<?php print $base_path . $path_to_zen; ?>/js/html5-respond.js"></script>
32
    <![endif]-->
33
  <?php elseif ($add_html5_shim): ?>
34
    <!--[if lt IE 9]>
35
    <script src="<?php print $base_path . $path_to_zen; ?>/js/html5.js"></script>
36
    <![endif]-->
37
  <?php endif; ?>
38
</head>
39
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
40

    
41
<div id="page">
42

    
43
  <header id="header" role="banner">
44

    
45
    <?php if ($logo): ?>
46
      <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>
47
    <?php endif; ?>
48

    
49
    <?php if ($site_name || $site_slogan): ?>
50
      <div id="name-and-slogan">
51
        <?php if ($site_name): ?>
52
          <h1 id="site-name">
53
            <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
54
          </h1>
55
        <?php endif; ?>
56

    
57
        <?php if ($site_slogan): ?>
58
          <h2 id="site-slogan"><?php print $site_slogan; ?></h2>
59
        <?php endif; ?>
60
      </div>
61
    <?php endif; ?>
62

    
63
    <?php print $header; ?>
64

    
65
  </header>
66

    
67
  <div id="main">
68

    
69
    <div id="content" class="column" role="main">
70
      <?php print $highlighted; ?>
71
      <a id="main-content"></a>
72
      <?php if ($title): ?>
73
        <h1 class="title" id="page-title"><?php print $title; ?></h1>
74
      <?php endif; ?>
75
      <?php print $messages; ?>
76
      <?php print $content; ?>
77
    </div>
78

    
79
    <div id="navigation">
80
      <?php print $navigation; ?>
81
    </div>
82

    
83
    <?php if ($sidebar_first || $sidebar_second): ?>
84
      <aside class="sidebars">
85
        <?php print $sidebar_first; ?>
86
        <?php print $sidebar_second; ?>
87
      </aside>
88
    <?php endif; ?>
89

    
90
  </div>
91

    
92
  <?php print $footer; ?>
93

    
94
</div>
95

    
96
<?php print $bottom; ?>
97

    
98
</body>
99
</html>