53 lines
2.2 KiB
PHP
53 lines
2.2 KiB
PHP
<!DOCTYPE html>
|
|
<!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7"><![endif]-->
|
|
<!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7"><![endif]-->
|
|
<!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8"><![endif]-->
|
|
<!--[if IE 9]><html class="ng-csp ie ie9 lte9"><![endif]-->
|
|
<!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
|
|
<!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
|
|
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
|
<title>
|
|
<?php p(OC_Defaults::getName()); ?>
|
|
</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="apple-itunes-app" content="app-id=543672169">
|
|
<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
|
|
<?php endforeach; ?>
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
|
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
|
|
<?php endforeach; ?>
|
|
|
|
<?php foreach($_['headers'] as $header): ?>
|
|
<?php
|
|
print_unescaped('<'.$header['tag'].' ');
|
|
foreach($header['attributes'] as $name=>$value) {
|
|
print_unescaped("$name='$value' ");
|
|
};
|
|
print_unescaped('/>');
|
|
?>
|
|
<?php endforeach; ?>
|
|
</head>
|
|
|
|
<body id="body-login">
|
|
<div id="login">
|
|
<header><div id="header">
|
|
<img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" />
|
|
<?php if (OC_Util::getEditionString() !== ''): ?>
|
|
<div id="logo-claim" style="display:none;">Enterprise Edition</div>
|
|
<?php endif; ?>
|
|
</div></header>
|
|
<?php print_unescaped($_['content']); ?>
|
|
</div>
|
|
<footer>
|
|
<p class="info">
|
|
<?php OC_Util::getEditionString() === '' ? '' : p('© 2013 '); ?>
|
|
<a href="<?php p(OC_Defaults::getBaseUrl())?>">
|
|
<?php p(OC_Defaults::getEntity()); ?></a>
|
|
<?php OC_Util::getEditionString() === '' ? print_unescaped(' – ') : print_unescaped('<br/>'); ?>
|
|
<?php p(OC_Defaults::getSlogan()); ?></p></footer>
|
|
</body>
|
|
</html>
|