2011-04-17 01:29:54 +04:00
|
|
|
<!DOCTYPE html>
|
2018-07-06 10:23:01 +03:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
|
2019-02-13 16:50:06 +03:00
|
|
|
<head
|
|
|
|
<?php if ($_['user_uid']) { ?>
|
|
|
|
data-user="<?php p($_['user_uid']); ?>" data-user-displayname="<?php p($_['user_displayname']); ?>"
|
|
|
|
<?php } ?>
|
|
|
|
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">
|
2018-04-18 16:51:52 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
2014-08-28 12:12:59 +04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
|
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-09-11 16:07:45 +03:00
|
|
|
<link rel="manifest" href="<?php print_unescaped(image_path('', 'manifest.json')); ?>">
|
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']); ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</head>
|
2014-09-11 13:39:50 +04:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2018-01-27 01:46:40 +03:00
|
|
|
<?php include 'layout.noscript.warning.php'; ?>
|
2019-01-17 14:30:47 +03:00
|
|
|
<?php foreach ($_['initialStates'] as $app => $initialState) { ?>
|
|
|
|
<input type="hidden" id="initial-state-<?php p($app); ?>" value="<?php p(base64_encode($initialState)); ?>">
|
|
|
|
<?php }?>
|
2015-03-21 09:10:46 +03:00
|
|
|
<div class="wrapper">
|
|
|
|
<div class="v-align">
|
2014-09-11 13:39:50 +04:00
|
|
|
<?php if ($_['bodyid'] === 'body-login' ): ?>
|
2015-03-18 21:29:15 +03:00
|
|
|
<header role="banner">
|
2014-09-11 13:39:50 +04:00
|
|
|
<div id="header">
|
2016-06-23 14:39:28 +03:00
|
|
|
<div class="logo">
|
2014-12-18 12:50:05 +03:00
|
|
|
<h1 class="hidden-visually">
|
|
|
|
<?php p($theme->getName()); ?>
|
|
|
|
</h1>
|
2017-05-08 16:10:53 +03:00
|
|
|
<?php if(\OC::$server->getConfig()->getSystemValue('installed', false)
|
|
|
|
&& \OC::$server->getConfig()->getAppValue('theming', 'logoMime', false)): ?>
|
2017-05-02 18:43:59 +03:00
|
|
|
<img src="<?php p($theme->getLogo()); ?>"/>
|
2017-05-01 20:05:21 +03:00
|
|
|
<?php endif; ?>
|
2014-11-06 15:26:38 +03:00
|
|
|
</div>
|
2014-09-11 13:39:50 +04:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<?php endif; ?>
|
2018-04-18 17:14:09 +03:00
|
|
|
<main>
|
|
|
|
<?php print_unescaped($_['content']); ?>
|
|
|
|
</main>
|
2014-04-10 02:33:55 +04:00
|
|
|
</div>
|
2013-07-22 15:16:01 +04:00
|
|
|
</div>
|
2015-03-18 21:29:15 +03:00
|
|
|
<footer role="contentinfo">
|
2013-06-12 16:49:30 +04:00
|
|
|
<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>
|