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