2011-04-17 01:29:54 +04:00
|
|
|
<!DOCTYPE html>
|
2014-06-03 18:18:06 +04:00
|
|
|
<!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
|
|
|
|
<!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
|
|
|
|
<!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false"><![endif]-->
|
|
|
|
<!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false"><![endif]-->
|
|
|
|
<!--[if gt IE 9]><html class="ng-csp ie" data-placeholder-focus="false"><![endif]-->
|
|
|
|
<!--[if !IE]><!--><html class="ng-csp" data-placeholder-focus="false"><!--<![endif]-->
|
2013-07-03 14:38:20 +04:00
|
|
|
|
2013-05-13 16:23:56 +04:00
|
|
|
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
2013-06-12 16:33:24 +04:00
|
|
|
<title>
|
2013-07-24 13:51:21 +04:00
|
|
|
<?php p($theme->getTitle()); ?>
|
2013-06-12 16:33:24 +04:00
|
|
|
</title>
|
2011-03-02 13:56:48 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2014-09-11 12:28:52 +04:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
2014-01-17 17:41:05 +04:00
|
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
|
2014-08-28 12:12:59 +04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
|
2014-08-23 00:26:39 +04:00
|
|
|
<link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
|
2013-02-28 01:55:39 +04:00
|
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
|
2011-08-20 00:53:07 +04:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2013-02-28 01:55:39 +04:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2011-08-20 00:53:07 +04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2013-02-28 01:55:39 +04:00
|
|
|
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2013-07-11 18:38:07 +04:00
|
|
|
|
2011-06-24 20:02:19 +04:00
|
|
|
<?php foreach($_['headers'] as $header): ?>
|
|
|
|
<?php
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped('<'.$header['tag'].' ');
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($header['attributes'] as $name=>$value) {
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped("$name='$value' ");
|
2011-06-24 20:02:19 +04:00
|
|
|
};
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped('/>');
|
2011-06-24 20:02:19 +04:00
|
|
|
?>
|
|
|
|
<?php endforeach; ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</head>
|
2014-09-11 13:39:50 +04:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2014-09-08 20:07:20 +04:00
|
|
|
<noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript for correct operation. Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and reload the page.')); ?></div></div></noscript>
|
2013-07-22 15:16:01 +04:00
|
|
|
<div class="wrapper"><!-- for sticky footer -->
|
2014-04-10 02:33:55 +04:00
|
|
|
<div class="v-align"><!-- vertically centred box -->
|
2014-09-11 13:39:50 +04:00
|
|
|
<?php if ($_['bodyid'] === 'body-login' ): ?>
|
|
|
|
<header>
|
|
|
|
<div id="header">
|
|
|
|
<div class="logo svg"></div>
|
|
|
|
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<?php endif; ?>
|
2014-04-10 02:33:55 +04:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2014-09-11 13:39:50 +04:00
|
|
|
<div class="push"></div><!-- for sticky footer -->
|
2014-04-10 02:33:55 +04:00
|
|
|
</div>
|
2013-07-22 15:16:01 +04:00
|
|
|
</div>
|
2013-07-22 13:58:26 +04:00
|
|
|
|
2013-06-12 16:49:30 +04:00
|
|
|
<footer>
|
|
|
|
<p class="info">
|
2013-07-24 13:51:21 +04:00
|
|
|
<?php print_unescaped($theme->getLongFooter()); ?>
|
2013-07-22 14:40:28 +04:00
|
|
|
</p>
|
|
|
|
</footer>
|
2011-03-02 13:56:48 +03:00
|
|
|
</body>
|
|
|
|
</html>
|