2011-04-17 01:29:54 +04:00
|
|
|
<!DOCTYPE html>
|
2013-03-03 16:57:20 +04:00
|
|
|
<!--[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]-->
|
2011-03-02 13:56:48 +03:00
|
|
|
<head>
|
|
|
|
<title>ownCloud</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2013-01-25 18:57:57 +04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=543672169">
|
2013-02-28 01:55:39 +04:00
|
|
|
<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')); ?>" />
|
2011-08-20 00:53:07 +04:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2013-02-28 01:55:39 +04:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2011-08-20 00:53:07 +04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2013-02-28 01:55:39 +04:00
|
|
|
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2011-06-24 20:02:19 +04:00
|
|
|
|
|
|
|
<?php foreach($_['headers'] as $header): ?>
|
|
|
|
<?php
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped('<'.$header['tag'].' ');
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($header['attributes'] as $name=>$value) {
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped("$name='$value' ");
|
2011-06-24 20:02:19 +04:00
|
|
|
};
|
2013-02-28 01:55:39 +04:00
|
|
|
print_unescaped('/>');
|
2011-06-24 20:02:19 +04:00
|
|
|
?>
|
|
|
|
<?php endforeach; ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</head>
|
|
|
|
|
2011-04-17 17:49:54 +04:00
|
|
|
<body id="body-login">
|
2011-08-08 19:57:45 +04:00
|
|
|
<div id="login">
|
2011-08-09 12:30:37 +04:00
|
|
|
<header><div id="header">
|
2013-02-28 01:55:39 +04:00
|
|
|
<img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" />
|
2011-08-09 12:30:37 +04:00
|
|
|
</div></header>
|
2013-02-28 01:55:39 +04:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2011-08-08 19:57:45 +04:00
|
|
|
</div>
|
2013-02-15 02:19:12 +04:00
|
|
|
<footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> –
|
2013-02-28 01:55:39 +04:00
|
|
|
<?php p($l->t( 'web services under your control' )); ?></p></footer>
|
2011-03-02 13:56:48 +03:00
|
|
|
</body>
|
|
|
|
</html>
|