Projet

Général

Profil

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

root / drupal7 / sites / all / themes / responsive / templates / maintenance-page.tpl.php @ cc7b6b59

1
<?php
2
/**
3
 * @file
4
 * Default theme implementation to display a single Drupal page while offline.
5
 *
6
 * All the available variables are mirrored in page.tpl.php. Some may be left
7
 * blank but they are provided for consistency.
8
 *
9
 * @see template_preprocess()
10
 * @see template_preprocess_maintenance_page()
11
 */
12
?>
13
<!DOCTYPE html>
14
<html lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
15

    
16
<head>
17
  <?php print $head; ?>
18
  <title><?php print $head_title; ?></title>
19
  <?php print $styles; ?>
20
  <?php print $scripts; ?>
21
</head>
22

    
23
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
24

    
25
<div class="container">
26

    
27
  <header id="head" role="banner">
28
    <hgroup class="sixteen columns alpha">
29
       <div id="logo">
30
        <?php if ($logo): ?><a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>"/></a><?php endif; ?>
31
        <?php if ($site_slogan): ?><div class="site-slogan"><?php print $site_slogan; ?></div><!--site slogan--><?php endif; ?>
32
        </div>
33
    </hgroup>
34
    
35
  </header>
36
</div>
37

    
38
<div class="container" id="content-contain">
39
 <div id="content" class="sixteen columns">
40
  <section id="main" role="main" class="clearfix">
41
    <?php print $messages; ?>
42
    <a id="main-content"></a>
43
    <?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
44
    <?php print $content; ?>
45
  </section> <!-- /#main -->
46
 </div>
47
</div> 
48

    
49
<div id="copyright" class="container">
50
 <div class="credit"><?php print t('Copyright'); ?> &copy; <?php echo date("Y"); ?>, <?php print $site_name; ?> | <?php print t('Theme by'); ?>  <a href="http://www.devsaran.com">Devsaran</a></div>
51
  <div class="clear"></div>
52
</div>
53

    
54
</body>
55
</html>