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