2012-08-29 15:54:31 +00:00
|
|
|
<!DOCTYPE html>
|
2018-07-06 07:23:01 +00:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
|
2014-12-05 21:23:55 +00:00
|
|
|
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
2015-03-17 22:36:05 +00:00
|
|
|
<meta charset="utf-8">
|
2013-06-12 12:33:24 +00:00
|
|
|
<title>
|
2013-07-24 09:51:21 +00:00
|
|
|
<?php p($theme->getTitle()); ?>
|
2013-06-12 12:33:24 +00:00
|
|
|
</title>
|
2015-03-18 01:11:47 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2018-02-07 07:58:15 +00:00
|
|
|
<meta name="referrer" content="no-referrer">
|
2018-04-18 13:51:52 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
2017-03-27 23:37:47 +00:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
|
2016-03-08 20:09:34 +00:00
|
|
|
<link rel="icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>">
|
2015-03-17 22:57:23 +00:00
|
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
|
2017-03-27 23:37:47 +00:00
|
|
|
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
|
2017-05-20 10:16:44 +00:00
|
|
|
<?php emit_css_loading_tags($_); ?>
|
2017-03-08 08:43:51 +00:00
|
|
|
<?php emit_script_loading_tags($_); ?>
|
2014-10-28 10:15:58 +00:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2012-08-29 15:54:31 +00:00
|
|
|
</head>
|
2014-03-14 10:08:16 +00:00
|
|
|
<body id="body-public">
|
2018-01-26 22:46:40 +00:00
|
|
|
<?php include 'layout.noscript.warning.php'; ?>
|
2013-02-27 21:55:39 +00:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2012-08-29 15:54:31 +00:00
|
|
|
</body>
|
|
|
|
</html>
|