2012-08-29 11:54:31 -04:00
|
|
|
<!DOCTYPE html>
|
2018-07-06 03:23:01 -04:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
|
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">
|
2018-04-18 09:51:52 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
2017-03-27 19:37:47 -04:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
|
2016-03-08 15:09:34 -05:00
|
|
|
<link rel="icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>">
|
2019-06-14 13:29:45 -04:00
|
|
|
<link rel="apple-touch-icon" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
|
2017-03-27 19:37:47 -04:00
|
|
|
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
|
2017-05-20 06:16:44 -04:00
|
|
|
<?php emit_css_loading_tags($_); ?>
|
2017-03-08 03:43:51 -05:00
|
|
|
<?php emit_script_loading_tags($_); ?>
|
2014-10-28 06:15:58 -04:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2012-08-29 11:54:31 -04:00
|
|
|
</head>
|
2018-08-03 13:21:10 -04:00
|
|
|
<body id="body-public" class="layout-base">
|
2018-01-26 17:46:40 -05:00
|
|
|
<?php include 'layout.noscript.warning.php'; ?>
|
2019-01-17 06:30:47 -05:00
|
|
|
<?php foreach ($_['initialStates'] as $app => $initialState) { ?>
|
|
|
|
|
<input type="hidden" id="initial-state-<?php p($app); ?>" value="<?php p(base64_encode($initialState)); ?>">
|
|
|
|
|
<?php }?>
|
2018-07-27 03:42:34 -04:00
|
|
|
<div id="content" class="app-public" role="main">
|
|
|
|
|
<?php print_unescaped($_['content']); ?>
|
2018-07-23 14:14:19 -04:00
|
|
|
</div>
|
2012-08-29 11:54:31 -04:00
|
|
|
</body>
|
|
|
|
|
</html>
|