Project

General

Profile

Download (1.39 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/**
3
 * @file
4
 * Custom theme implementation to display a single Drupal page while offline.
5
 *
6
 * This file controls the page that is displayed when the site is in
7
 * "maintenance mode" but the database connection and database are still
8
 * functioning correctly. See /modules/system/maintenance-page.tpl.php for
9
 * more information about available variables.
10
 *
11
 * @author W. Addink <w.addink@eti.uva.nl>
12
 *
13
 * @see template_preprocess()
14
 * @see template_preprocess_maintenance_page()
15
 */
16

    
17
?>
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
19
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
20
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
21

    
22
<head>
23
  <title><?php print $head_title; ?></title>
24
  <?php print $head; ?>
25
  <?php print $styles; ?>
26
  <?php print $scripts; ?>
27
</head>
28
<body class="<?php print $classes; ?>">
29
  <div id="page">
30
    <div id="header">
31
    </div> <!-- /header -->
32
    <div id="content">
33
      <?php if (!empty($title)): ?><h1 class="title clear-fix" id="page-title"><?php print $title; ?></h1><?php endif; ?>
34
      <?php if (!empty($messages)): print $messages; endif; ?>
35
      <div id="content-content" class="clearfix">
36
        <?php print $content; ?>
37
      </div> <!-- /content-content -->
38
    </div> <!-- /content -->
39
  </div><!-- /page -->
40
</body>
41
</html>
(6-6/13)