2011-04-16 21:29:54 +00:00
|
|
|
<!DOCTYPE html>
|
2013-03-03 12:57:20 +00: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 10:56:48 +00:00
|
|
|
<head>
|
2013-02-27 21:55:39 +00:00
|
|
|
<title><?php p(!empty($_['application'])?$_['application'].' | ':'') ?>ownCloud
|
2013-03-02 15:09:36 +00:00
|
|
|
<?php p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?></title>
|
2011-03-02 10:56:48 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2013-01-25 14:57:57 +00:00
|
|
|
<meta name="apple-itunes-app" content="app-id=543672169">
|
2013-02-27 21:55:39 +00: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-04-16 17:49:18 +00:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2013-02-27 21:55:39 +00:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
|
2011-03-09 20:57:00 +00:00
|
|
|
<?php endforeach; ?>
|
2011-04-16 17:49:18 +00:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2013-02-27 21:55:39 +00:00
|
|
|
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 20:57:00 +00:00
|
|
|
<?php endforeach; ?>
|
2011-06-24 16:02:19 +00:00
|
|
|
<?php foreach($_['headers'] as $header): ?>
|
|
|
|
<?php
|
2013-02-27 21:55:39 +00:00
|
|
|
print_unescaped('<'.$header['tag'].' ');
|
2012-09-07 13:22:01 +00:00
|
|
|
foreach($header['attributes'] as $name=>$value) {
|
2013-02-27 21:55:39 +00:00
|
|
|
print_unescaped("$name='$value' ");
|
2011-06-24 16:02:19 +00:00
|
|
|
};
|
2013-02-27 21:55:39 +00:00
|
|
|
print_unescaped('/>');
|
2011-06-24 16:02:19 +00:00
|
|
|
?>
|
|
|
|
<?php endforeach; ?>
|
2011-03-02 10:56:48 +00:00
|
|
|
</head>
|
|
|
|
|
2013-02-27 21:55:39 +00:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2013-01-11 10:52:07 +00:00
|
|
|
<div id="notification-container">
|
2013-01-11 14:19:53 +00:00
|
|
|
<div id="notification"></div>
|
2013-01-11 10:52:07 +00:00
|
|
|
</div>
|
|
|
|
<header><div id="header">
|
2013-02-27 21:55:39 +00:00
|
|
|
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg"
|
|
|
|
src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a>
|
2012-10-27 16:58:16 +00:00
|
|
|
|
|
|
|
<ul id="settings" class="svg">
|
2013-03-15 11:03:11 +00:00
|
|
|
<span id="expand" tabindex="0" role="link">
|
2013-03-02 15:09:36 +00:00
|
|
|
<span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
|
2013-02-27 21:55:39 +00:00
|
|
|
<img class="svg" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>" />
|
2012-10-27 16:58:16 +00:00
|
|
|
</span>
|
2013-02-06 15:03:01 +00:00
|
|
|
<div id="expanddiv">
|
2012-10-27 16:58:16 +00:00
|
|
|
<?php foreach($_['settingsnavigation'] as $entry):?>
|
|
|
|
<li>
|
2013-02-27 21:55:39 +00:00
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>" title=""
|
2013-02-14 22:19:12 +00:00
|
|
|
<?php if( $entry["active"] ): ?> class="active"<?php endif; ?>>
|
2013-02-27 21:55:39 +00:00
|
|
|
<img class="svg" alt="" src="<?php print_unescaped($entry['icon']); ?>">
|
|
|
|
<?php p($entry['name']) ?>
|
2012-10-27 16:58:16 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<li>
|
2013-02-27 21:55:39 +00:00
|
|
|
<a id="logout" href="<?php print_unescaped(link_to('', 'index.php')); ?>?logout=true">
|
|
|
|
<img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>" />
|
|
|
|
<?php p($l->t('Log out'));?>
|
2012-10-27 16:58:16 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</div>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<form class="searchbox" action="#" method="post">
|
2013-02-14 22:19:12 +00:00
|
|
|
<input id="searchbox" class="svg" type="search" name="query"
|
2013-02-27 21:55:39 +00:00
|
|
|
value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>"
|
2013-02-14 22:19:12 +00:00
|
|
|
autocomplete="off" x-webkit-speech />
|
2011-08-10 20:56:44 +00:00
|
|
|
</form>
|
2011-08-09 08:30:37 +00:00
|
|
|
</div></header>
|
2011-03-02 10:56:48 +00:00
|
|
|
|
2011-08-09 08:30:37 +00:00
|
|
|
<nav><div id="navigation">
|
2011-08-11 16:59:01 +00:00
|
|
|
<ul id="apps" class="svg">
|
2011-08-08 15:52:29 +00:00
|
|
|
<?php foreach($_['navigation'] as $entry): ?>
|
2013-02-27 21:55:39 +00:00
|
|
|
<li data-id="<?php p($entry['id']); ?>">
|
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>" title=""
|
2013-02-14 22:19:12 +00:00
|
|
|
<?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
|
2013-02-27 21:55:39 +00:00
|
|
|
<img class="icon svg" src="<?php print_unescaped($entry['icon']); ?>"/>
|
2013-04-10 13:44:50 +00:00
|
|
|
<span>
|
|
|
|
<?php p($entry['name']); ?>
|
|
|
|
</span>
|
2012-10-26 21:38:36 +00:00
|
|
|
</a>
|
2011-08-08 15:52:29 +00:00
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
2011-08-09 08:30:37 +00:00
|
|
|
</div></nav>
|
|
|
|
|
2013-01-16 18:38:19 +00:00
|
|
|
<div id="content-wrapper">
|
|
|
|
<div id="content">
|
2013-02-27 21:55:39 +00:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2013-01-16 18:38:19 +00:00
|
|
|
</div>
|
2011-03-02 10:56:48 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|