You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.2 KiB

15 years ago
14 years ago
14 years ago
12 years ago
  1. <!DOCTYPE html>
  2. <!--[if lte IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
  3. <!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
  4. <!--[if (gt IE 9)|!(IE)]><!--><html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><!--<![endif]-->
  5. <head data-requesttoken="<?php p($_['requesttoken']); ?>">
  6. <meta charset="utf-8">
  7. <title>
  8. <?php p($theme->getTitle()); ?>
  9. </title>
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="referrer" content="never">
  12. <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
  13. <meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
  14. <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
  15. <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>">
  16. <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
  17. <?php foreach($_['cssfiles'] as $cssfile): ?>
  18. <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
  19. <?php endforeach; ?>
  20. <?php foreach($_['jsfiles'] as $jsfile): ?>
  21. <script src="<?php print_unescaped($jsfile); ?>"></script>
  22. <?php endforeach; ?>
  23. <?php print_unescaped($_['headers']); ?>
  24. </head>
  25. <body id="<?php p($_['bodyid']);?>">
  26. <?php include('layout.noscript.warning.php'); ?>
  27. <div class="wrapper">
  28. <div class="v-align">
  29. <?php if ($_['bodyid'] === 'body-login' ): ?>
  30. <header role="banner">
  31. <div id="header">
  32. <div class="logo svg">
  33. <h1 class="hidden-visually">
  34. <?php p($theme->getName()); ?>
  35. </h1>
  36. </div>
  37. <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
  38. </div>
  39. </header>
  40. <?php endif; ?>
  41. <?php print_unescaped($_['content']); ?>
  42. <div class="push"></div><!-- for sticky footer -->
  43. </div>
  44. </div>
  45. <footer role="contentinfo">
  46. <p class="info">
  47. <?php print_unescaped($theme->getLongFooter()); ?>
  48. </p>
  49. </footer>
  50. </body>
  51. </html>