maintenance-page.tpl.php 1.3 KB

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