summaryrefslogtreecommitdiff
path: root/themes/seven/maintenance-page.tpl.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-19 03:11:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-19 03:11:53 +0000
commit016280812eb59ece5d1e1c83534ae06b8fffbcae (patch)
treec9f486298af56d2c392369432f693f3c4ffd0766 /themes/seven/maintenance-page.tpl.php
parente0a67c1c00b766378ef39c2b8f4a3eedbfc0c3b2 (diff)
downloadbrdo-016280812eb59ece5d1e1c83534ae06b8fffbcae.tar.gz
brdo-016280812eb59ece5d1e1c83534ae06b8fffbcae.tar.bz2
#547068 by sun, seutje, yoroy, Gábor Hojtsy, adrian, Bojhan, and markboulton: Use Seven theme for installation / updates.
Diffstat (limited to 'themes/seven/maintenance-page.tpl.php')
-rw-r--r--themes/seven/maintenance-page.tpl.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/themes/seven/maintenance-page.tpl.php b/themes/seven/maintenance-page.tpl.php
new file mode 100644
index 000000000..9d1662fab
--- /dev/null
+++ b/themes/seven/maintenance-page.tpl.php
@@ -0,0 +1,48 @@
+<?php
+// $Id$
+?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
+ <head>
+ <title><?php print $head_title; ?></title>
+ <?php print $head; ?>
+ <?php print $styles; ?>
+ <?php print $scripts; ?>
+ </head>
+ <body class="<?php print $classes; ?>">
+
+ <?php print $page_top; ?>
+
+ <div id="branding">
+ <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
+ </div>
+
+ <div id="page">
+
+ <?php if ($sidebar_first): ?>
+ <div id="sidebar-first" class="sidebar">
+ <?php if ($logo): ?>
+ <img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" />
+ <?php endif; ?>
+ <?php print $sidebar_first ?>
+ </div>
+ <?php endif; ?>
+
+ <div id="content" class="clearfix">
+ <?php if ($show_messages && $messages): ?>
+ <div id="console"><?php print $messages; ?></div>
+ <?php endif; ?>
+ <?php if ($help): ?>
+ <div id="help">
+ <?php print $help; ?>
+ </div>
+ <?php endif; ?>
+ <?php print $content; ?>
+ </div>
+
+ </div>
+
+ <?php print $page_bottom; ?>
+
+ </body>
+</html>