2011-04-16 17:29:54 -04:00
|
|
|
<!DOCTYPE html>
|
2015-03-17 17:35:20 -04:00
|
|
|
<!--[if lte IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
|
2014-10-22 10:38:17 -04:00
|
|
|
<!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
|
2015-03-17 17:35:20 -04:00
|
|
|
<!--[if (gt IE 9)|!(IE)]><!--><html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><!--<![endif]-->
|
2013-05-13 08:23:56 -04:00
|
|
|
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
2015-03-17 18:36:05 -04:00
|
|
|
<meta charset="utf-8">
|
2013-06-12 08:33:24 -04:00
|
|
|
<title>
|
2013-07-24 05:51:21 -04:00
|
|
|
<?php p($theme->getTitle()); ?>
|
2013-06-12 08:33:24 -04:00
|
|
|
</title>
|
2015-03-17 21:11:47 -04:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2015-09-09 12:07:43 -04:00
|
|
|
<meta name="referrer" content="never">
|
2014-01-17 08:41:05 -05:00
|
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
|
2014-08-28 04:12:59 -04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
|
2015-07-29 12:16:01 -04:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
|
2015-08-03 12:24:20 -04:00
|
|
|
<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>">
|
2015-03-17 18:57:23 -04:00
|
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
|
2015-11-02 13:23:35 -05:00
|
|
|
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="#1d2d44">
|
2011-08-19 16:53:07 -04:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2015-03-18 00:33:17 -04:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
|
2011-03-09 15:57:00 -05:00
|
|
|
<?php endforeach; ?>
|
2011-08-19 16:53:07 -04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2015-03-18 00:33:17 -04:00
|
|
|
<script src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 15:57:00 -05:00
|
|
|
<?php endforeach; ?>
|
2014-10-28 06:15:58 -04:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2011-03-02 05:56:48 -05:00
|
|
|
</head>
|
2014-09-11 05:39:50 -04:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2015-02-09 10:01:52 -05:00
|
|
|
<?php include('layout.noscript.warning.php'); ?>
|
2015-03-21 02:10:46 -04:00
|
|
|
<div class="wrapper">
|
|
|
|
|
<div class="v-align">
|
2014-09-11 05:39:50 -04:00
|
|
|
<?php if ($_['bodyid'] === 'body-login' ): ?>
|
2015-03-18 14:29:15 -04:00
|
|
|
<header role="banner">
|
2014-09-11 05:39:50 -04:00
|
|
|
<div id="header">
|
2014-11-06 07:26:38 -05:00
|
|
|
<div class="logo svg">
|
2014-12-18 04:50:05 -05:00
|
|
|
<h1 class="hidden-visually">
|
|
|
|
|
<?php p($theme->getName()); ?>
|
|
|
|
|
</h1>
|
2014-11-06 07:26:38 -05:00
|
|
|
</div>
|
2014-09-11 05:39:50 -04:00
|
|
|
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
<?php endif; ?>
|
2014-04-09 18:33:55 -04:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2014-09-11 05:39:50 -04:00
|
|
|
<div class="push"></div><!-- for sticky footer -->
|
2014-04-09 18:33:55 -04:00
|
|
|
</div>
|
2013-07-22 07:16:01 -04:00
|
|
|
</div>
|
2015-03-18 14:29:15 -04:00
|
|
|
<footer role="contentinfo">
|
2013-06-12 08:49:30 -04:00
|
|
|
<p class="info">
|
2013-07-24 05:51:21 -04:00
|
|
|
<?php print_unescaped($theme->getLongFooter()); ?>
|
2013-07-22 06:40:28 -04:00
|
|
|
</p>
|
|
|
|
|
</footer>
|
2011-03-02 05:56:48 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|