maintenance-page.tpl.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
  3. <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>" > <![endif]-->
  4. <!--[if IE 7]> <html class="no-js ie7 oldie" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>" > <![endif]-->
  5. <!--[if IE 8]> <html class="no-js ie8 oldie" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>" > <![endif]-->
  6. <!-- Consider adding an manifest.appcache: h5bp.com/d/Offline -->
  7. <!--[if gt IE 8]><!--> <html class="no-js" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>" > <!--<![endif]-->
  8. <head>
  9. <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
  10. Remove this if you use the .htaccess -->
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  12. <link type="image/png" rel="shortcut icon" href="<?php print base_path() . path_to_theme() .'/materio-icon-O.png' ?>">
  13. <?php print $head; ?>
  14. <title><?php print $head_title; ?></title>
  15. <?php print $styles; ?>
  16. <!-- All JavaScript at the bottom, except for Modernizr / Respond.
  17. Modernizr enables HTML5 elements & feature detects; Respond is a polyfill for min/max-width CSS3 Media Queries
  18. For optimal performance, use a custom Modernizr build: www.modernizr.com/download/ -->
  19. <script src="<?php print $theme_path ?>/js/libs/modernizr-2.6.1.min.js" type="text/javascript"></script>
  20. <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  21. </head>
  22. <body class="<?php print $classes; ?>"<?php print $attributes; ?>>
  23. <div id="root">
  24. <div id="container">
  25. <header id="header">
  26. <h1 class="site-name"><?php print $site_name; ?></h1>
  27. <h2 class="site-slogan"><?php print $site_slogan; ?></h2>
  28. </header>
  29. <div id="main">
  30. <section id="center">
  31. <section id="content">
  32. <div class="inner-content">
  33. <?php if($title): ?><h3 class="page-title"><?php print $title ?></h3><?php endif; ?>
  34. <?php print $content ?>
  35. <img src="<?php print base_path() . path_to_theme() .'/img/maintenance.jpg' ?>">
  36. </div>
  37. </section>
  38. </section> <!-- /center -->
  39. </div><!-- /main -->
  40. <div id="footer"><?php //print $footer_message ?></div>
  41. </div>
  42. <!-- /container -->
  43. </div>
  44. <!-- /root -->
  45. <!-- Javascript at the bottom for fast page loading -->
  46. <?php print $scripts; ?>
  47. <!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
  48. chromium.org/developers/how-tos/chrome-frame-getting-started -->
  49. <!--[if lt IE 7 ]>
  50. <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
  51. <script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
  52. <![endif]-->
  53. </body>
  54. </html>