2012-08-29 11:54:31 -04:00
|
|
|
<!DOCTYPE html>
|
2016-06-16 02:28:43 -04:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" >
|
2014-12-05 16:23:55 -05: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">
|
2015-07-29 12:16:01 -04:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
|
2016-03-08 15:09:34 -05:00
|
|
|
<link rel="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">
|
2012-08-29 11:54:31 -04:00
|
|
|
<?php foreach ($_['cssfiles'] as $cssfile): ?>
|
2015-06-10 06:16:45 -04:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>">
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
<?php foreach($_['printcssfiles'] as $cssfile): ?>
|
|
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="print">
|
2012-08-29 11:54:31 -04:00
|
|
|
<?php endforeach; ?>
|
2016-10-25 15:36:37 -04:00
|
|
|
<?php if (isset($_['inline_ocjs'])): ?>
|
|
|
|
|
<script nonce="<?php p(\OC::$server->getContentSecurityPolicyNonceManager()->getNonce()) ?>" type="text/javascript">
|
|
|
|
|
<?php print_unescaped($_['inline_ocjs']); ?>
|
|
|
|
|
</script>
|
|
|
|
|
<?php endif; ?>
|
2012-08-29 11:54:31 -04:00
|
|
|
<?php foreach ($_['jsfiles'] as $jsfile): ?>
|
2016-10-24 10:31:06 -04:00
|
|
|
<script nonce="<?php p(\OC::$server->getContentSecurityPolicyNonceManager()->getNonce()) ?>" src="<?php print_unescaped($jsfile); ?>"></script>
|
2012-08-29 11:54:31 -04:00
|
|
|
<?php endforeach; ?>
|
2014-10-28 06:15:58 -04:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2012-08-29 11:54:31 -04:00
|
|
|
</head>
|
2014-03-14 06:08:16 -04:00
|
|
|
<body id="body-public">
|
2015-02-09 10:01:52 -05:00
|
|
|
<?php include('layout.noscript.warning.php'); ?>
|
2013-02-27 16:55:39 -05:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2012-08-29 11:54:31 -04:00
|
|
|
</body>
|
|
|
|
|
</html>
|