Projet

Général

Profil

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

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

1
<!DOCTYPE html>
2
<html lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
3
<head>
4
  <?php print $head; ?>
5
  <title><?php print $head_title; ?></title>
6
  <?php print $styles; ?>
7
  <?php print $scripts; ?>
8
</head>
9
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
10
  <div id="skip-link">
11
    <a href="#main-content"><?php print t('Skip to main content'); ?></a>
12
  </div>
13
  <?php print $page_top; ?>
14
  <div id="page" class="container">
15
    <header id="banner" class="clearfix">
16
      <?php if ($logo or $site_name): ?>
17
        <div id="branding">
18
          <div class="brand-elements">
19
            <strong>
20
              <?php if (!empty($logo)): ?>
21
                <span id="logo">
22
                  <a href="<?php print $base_path; ?>" title="<?php print t('Home page'); ?>" rel="home">
23
                    <img src="<?php print $logo; ?>" alt="<?php print t('Home page'); ?>" />
24
                  </a>
25
                </span>
26
              <?php endif; ?>
27
              <?php if (!empty($site_name)): ?>
28
                <span id="site-name">
29
                  <a href="<?php print $base_path ?>" title="<?php print t('Home page'); ?>" rel="home">
30
                    <?php print $site_name; ?>
31
                  </a>
32
                </span>
33
              <?php endif; ?>
34
            </strong>
35
          </div>
36
        </div>
37
      <?php endif; ?>
38
    </header>
39
    <div id="main-content">
40
      <?php if ($title): ?>
41
        <h1 id="page-title"><?php print $title; ?></h1>
42
      <?php endif; ?>
43
      <?php print $messages; ?>
44
      <div id="content">
45
        <?php print $content; ?>
46
      </div>
47
    </div>
48
    <footer><?php print $attribution; ?></footer>
49
  </div>
50
  <?php print $page_bottom ?>
51
</body>
52
</html>