maintenance-page.tpl.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display a single Drupal page while offline.
  5. *
  6. * All the available variables are mirrored in html.tpl.php and page.tpl.php.
  7. * Some may be blank but they are provided for consistency.
  8. *
  9. * @see template_preprocess()
  10. * @see template_preprocess_maintenance_page()
  11. *
  12. * @ingroup themeable
  13. */
  14. ?><!DOCTYPE html>
  15. <html<?php print $html_attributes;?><?php print $rdf_namespaces;?>>
  16. <head>
  17. <link rel="profile" href="<?php print $grddl_profile; ?>" />
  18. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  19. <?php print $head; ?>
  20. <title><?php print $head_title; ?></title>
  21. <?php print $styles; ?>
  22. <!-- HTML5 element support for IE6-8 -->
  23. <!--[if lt IE 9]>
  24. <script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  25. <![endif]-->
  26. <?php print $scripts; ?>
  27. </head>
  28. <body<?php print $body_attributes; ?>>
  29. <div id="skip-link">
  30. <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
  31. </div>
  32. <?php print $page_top; ?>
  33. <header id="navbar" role="banner" class="<?php print $navbar_classes; ?>">
  34. <div class="<?php print $container_class; ?>">
  35. <div class="navbar-header">
  36. <?php if ($logo): ?>
  37. <a class="logo navbar-btn pull-left" href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>">
  38. <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
  39. </a>
  40. <?php endif; ?>
  41. <?php if (!empty($site_name)): ?>
  42. <a class="name navbar-brand" href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a>
  43. <?php endif; ?>
  44. </div>
  45. </div>
  46. </header>
  47. <div class="main-container <?php print $container_class; ?>">
  48. <div class="row">
  49. <section class="col-sm-12">
  50. <a id="main-content"></a>
  51. <?php if (!empty($title)): ?>
  52. <h1 class="page-header"><?php print $title; ?></h1>
  53. <?php endif; ?>
  54. <?php if (!empty($content)): ?>
  55. <?php print $content; ?>
  56. <?php endif; ?>
  57. </section>
  58. </div>
  59. </div>
  60. <?php print $page_bottom; ?>
  61. </body>
  62. </html>