maintenance-page.tpl.php

  1. 7.x drupal-7.x/modules/system/maintenance-page.tpl.php
  2. 7.x drupal-7.x/themes/seven/maintenance-page.tpl.php
  3. 7.x drupal-7.x/themes/garland/maintenance-page.tpl.php
  4. 7.x drupal-7.x/themes/bartik/templates/maintenance-page.tpl.php
  5. 6.x drupal-6.x/modules/system/maintenance-page.tpl.php
  6. 6.x drupal-6.x/themes/garland/maintenance-page.tpl.php
5 theme calls to maintenance-page.tpl.php
drupal_deliver_html_page in drupal-7.x/includes/common.inc
Packages and sends the result of a page callback to the browser as HTML.
theme_install_page in drupal-7.x/includes/theme.maintenance.inc
Returns HTML for the installation page.
theme_update_page in drupal-7.x/includes/theme.maintenance.inc
Returns HTML for the update page.
_batch_progress_page_nojs in drupal-7.x/includes/batch.inc
Outputs a batch processing page without JavaScript support.
_drupal_log_error in drupal-7.x/includes/errors.inc
Logs a PHP error or exception and displays an error page in fatal cases.

File

drupal-7.x/themes/seven/maintenance-page.tpl.php
View source
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  4. <head>
  5. <title><?php print $head_title; ?></title>
  6. <?php print $head; ?>
  7. <?php print $styles; ?>
  8. <?php print $scripts; ?>
  9. </head>
  10. <body class="<?php print $classes; ?>">
  11. <?php print $page_top; ?>
  12. <div id="branding">
  13. <?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
  14. </div>
  15. <div id="page">
  16. <?php if ($sidebar_first): ?>
  17. <div id="sidebar-first" class="sidebar">
  18. <?php if ($logo): ?>
  19. <img id="logo" src="<?php print $logo ?>" alt="<?php print $site_name ?>" />
  20. <?php endif; ?>
  21. <?php print $sidebar_first ?>
  22. </div>
  23. <?php endif; ?>
  24. <div id="content" class="clearfix">
  25. <?php if ($messages): ?>
  26. <div id="console"><?php print $messages; ?></div>
  27. <?php endif; ?>
  28. <?php if ($help): ?>
  29. <div id="help">
  30. <?php print $help; ?>
  31. </div>
  32. <?php endif; ?>
  33. <?php print $content; ?>
  34. </div>
  35. </div>
  36. <?php print $page_bottom; ?>
  37. </body>
  38. </html>