maintenance-page.tpl.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>