2011-04-17 01:29:54 +04:00
|
|
|
<!DOCTYPE html>
|
2015-03-18 01:16:42 +03:00
|
|
|
<!--[if lte IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
|
2014-10-22 18:38:17 +04:00
|
|
|
<!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]-->
|
2015-03-18 01:16:42 +03:00
|
|
|
<!--[if (gt IE 9)|!(IE)]><!--><html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><!--<![endif]-->
|
2015-05-03 13:28:29 +03:00
|
|
|
<head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>"
|
|
|
|
<?php if ($_['updateAvailable']): ?>
|
|
|
|
data-update-version="<?php print($_['updateVersion']); ?>" data-update-link="<?php print_unescaped($_['updateLink']); ?>"
|
|
|
|
<?php endif; ?>
|
|
|
|
>
|
2015-03-18 01:36:05 +03:00
|
|
|
<meta charset="utf-8">
|
2013-06-12 16:33:24 +04:00
|
|
|
<title>
|
2013-10-17 12:40:06 +04:00
|
|
|
<?php
|
|
|
|
p(!empty($_['application'])?$_['application'].' - ':'');
|
|
|
|
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">
|
2015-09-09 19:07:43 +03:00
|
|
|
<meta name="referrer" content="never">
|
2014-03-26 02:35:55 +04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
2014-08-28 12:12:59 +04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
|
2014-07-08 15:14:54 +04:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
2014-07-17 11:51:44 +04:00
|
|
|
<meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>">
|
2014-07-08 15:14:54 +04:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
2015-07-29 19:16:01 +03:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
|
2015-03-18 01:57:23 +03:00
|
|
|
<link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>">
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
|
2011-04-16 21:49:18 +04:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2015-03-18 07:33:17 +03:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2011-04-16 21:49:18 +04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2015-03-18 07:33:17 +03:00
|
|
|
<script src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 23:57:00 +03:00
|
|
|
<?php endforeach; ?>
|
2014-10-28 13:15:58 +03:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2011-03-02 13:56:48 +03:00
|
|
|
</head>
|
2013-02-28 01:55:39 +04:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2015-02-09 18:01:52 +03:00
|
|
|
<?php include('layout.noscript.warning.php'); ?>
|
2013-01-11 14:52:07 +04:00
|
|
|
<div id="notification-container">
|
2013-01-11 18:19:53 +04:00
|
|
|
<div id="notification"></div>
|
2013-01-11 14:52:07 +04:00
|
|
|
</div>
|
2015-03-18 21:29:15 +03:00
|
|
|
<header role="banner"><div id="header">
|
2014-12-17 18:05:01 +03:00
|
|
|
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
|
2015-04-01 22:10:48 +03:00
|
|
|
id="owncloud" tabindex="1">
|
2014-12-18 12:50:05 +03:00
|
|
|
<div class="logo-icon svg">
|
|
|
|
<h1 class="hidden-visually">
|
|
|
|
<?php p($theme->getName()); ?>
|
|
|
|
</h1>
|
|
|
|
</div>
|
2014-06-04 15:17:47 +04:00
|
|
|
</a>
|
2014-12-17 18:05:01 +03:00
|
|
|
|
2015-05-22 01:04:47 +03:00
|
|
|
<a href="#" class="header-appname-container menutoggle" tabindex="2">
|
2014-11-06 15:26:38 +03:00
|
|
|
<h1 class="header-appname">
|
2014-09-26 17:38:35 +04:00
|
|
|
<?php
|
|
|
|
if(OC_Util::getEditionString() === '') {
|
|
|
|
p(!empty($_['application'])?$_['application']: $l->t('Apps'));
|
|
|
|
} else {
|
2014-11-03 23:13:07 +03:00
|
|
|
print_unescaped($theme->getHTMLName());
|
2014-09-26 17:38:35 +04:00
|
|
|
}
|
|
|
|
?>
|
2014-11-06 15:26:38 +03:00
|
|
|
</h1>
|
2014-06-12 13:01:35 +04:00
|
|
|
<div class="icon-caret svg"></div>
|
2013-10-10 22:29:13 +04:00
|
|
|
</a>
|
2014-12-17 18:05:01 +03:00
|
|
|
|
2013-10-02 02:32:11 +04:00
|
|
|
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
|
2013-12-10 04:45:15 +04:00
|
|
|
<div id="settings" class="svg">
|
2015-03-26 12:28:49 +03:00
|
|
|
<div id="expand" tabindex="6" role="link">
|
2014-02-20 16:36:52 +04:00
|
|
|
<?php if ($_['enableAvatars']): ?>
|
2015-03-26 12:28:49 +03:00
|
|
|
<div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown'); } else { print_unescaped('" style="display: none'); } ?>">
|
2014-03-15 18:27:48 +04:00
|
|
|
<?php if ($_['userAvatarSet']): ?>
|
2015-03-03 14:52:27 +03:00
|
|
|
<img src="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', ['userId' => $_['user_uid'], 'size' => 32]));?>?requesttoken=<?php p(urlencode($_['requesttoken'])); ?>"
|
2015-03-19 11:10:58 +03:00
|
|
|
alt="">
|
2014-03-15 18:27:48 +04:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2014-02-20 16:36:52 +04:00
|
|
|
<?php endif; ?>
|
2013-03-02 19:09:36 +04:00
|
|
|
<span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
|
2015-03-18 21:29:15 +03:00
|
|
|
<img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>">
|
2014-03-15 18:27:48 +04:00
|
|
|
</div>
|
2013-02-06 19:03:01 +04:00
|
|
|
<div id="expanddiv">
|
2013-12-10 04:45:15 +04:00
|
|
|
<ul>
|
2012-10-27 20:58:16 +04:00
|
|
|
<?php foreach($_['settingsnavigation'] as $entry):?>
|
|
|
|
<li>
|
2015-04-01 22:10:48 +03:00
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>"
|
2013-02-15 02:19:12 +04:00
|
|
|
<?php if( $entry["active"] ): ?> class="active"<?php endif; ?>>
|
2013-02-28 01:55:39 +04:00
|
|
|
<img class="svg" alt="" src="<?php print_unescaped($entry['icon']); ?>">
|
|
|
|
<?php p($entry['name']) ?>
|
2012-10-27 20:58:16 +04:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<li>
|
2013-10-07 13:49:43 +04:00
|
|
|
<a id="logout" <?php print_unescaped(OC_User::getLogoutAttribute()); ?>>
|
2015-03-18 01:57:23 +03:00
|
|
|
<img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>">
|
2013-02-28 01:55:39 +04:00
|
|
|
<?php p($l->t('Log out'));?>
|
2012-10-27 20:58:16 +04:00
|
|
|
</a>
|
|
|
|
</li>
|
2013-12-10 04:45:15 +04:00
|
|
|
</ul>
|
2012-10-27 20:58:16 +04:00
|
|
|
</div>
|
2013-12-10 04:45:15 +04:00
|
|
|
</div>
|
2012-10-27 20:58:16 +04:00
|
|
|
|
2015-03-18 21:29:15 +03:00
|
|
|
<form class="searchbox" action="#" method="post" role="search">
|
2014-12-18 15:34:48 +03:00
|
|
|
<label for="searchbox" class="hidden-visually">
|
2014-12-17 16:49:13 +03:00
|
|
|
<?php p($l->t('Search'));?>
|
|
|
|
</label>
|
2013-02-15 02:19:12 +04:00
|
|
|
<input id="searchbox" class="svg" type="search" name="query"
|
2015-08-13 08:47:03 +03:00
|
|
|
value=""
|
2015-03-26 12:28:49 +03:00
|
|
|
autocomplete="off" tabindex="5">
|
2011-08-11 00:56:44 +04:00
|
|
|
</form>
|
2011-08-09 12:30:37 +04:00
|
|
|
</div></header>
|
2011-03-02 13:56:48 +03:00
|
|
|
|
2015-03-18 21:29:15 +03:00
|
|
|
<nav role="navigation"><div id="navigation">
|
2013-12-10 04:45:15 +04:00
|
|
|
<div id="apps" class="svg">
|
2014-06-04 17:27:46 +04:00
|
|
|
<ul>
|
2011-08-08 19:52:29 +04:00
|
|
|
<?php foreach($_['navigation'] as $entry): ?>
|
2013-02-28 01:55:39 +04:00
|
|
|
<li data-id="<?php p($entry['id']); ?>">
|
2015-04-01 22:10:48 +03:00
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>" tabindex="3"
|
2013-02-15 02:19:12 +04:00
|
|
|
<?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
|
2015-03-19 11:10:58 +03:00
|
|
|
<img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>">
|
2014-06-04 17:07:15 +04:00
|
|
|
<div class="icon-loading-dark" style="display:none;"></div>
|
2013-04-10 17:44:50 +04:00
|
|
|
<span>
|
|
|
|
<?php p($entry['name']); ?>
|
|
|
|
</span>
|
2012-10-27 01:38:36 +04:00
|
|
|
</a>
|
2011-08-08 19:52:29 +04:00
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
2015-03-26 12:28:49 +03:00
|
|
|
<?php
|
2015-03-21 09:10:46 +03:00
|
|
|
/* show "More apps" link to app administration directly in app navigation, as last entry */
|
2015-03-26 12:28:49 +03:00
|
|
|
if(OC_User::isAdminUser(OC_User::getUser())):
|
2015-03-21 09:10:46 +03:00
|
|
|
?>
|
2014-06-04 17:27:46 +04:00
|
|
|
<li id="apps-management">
|
2015-03-30 16:58:20 +03:00
|
|
|
<a href="<?php print_unescaped(\OC::$server->getURLGenerator()->linkToRoute('settings.AppSettings.viewApps')); ?>" tabindex="4"
|
2013-12-09 18:47:51 +04:00
|
|
|
<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
|
2015-03-19 11:10:58 +03:00
|
|
|
<img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>">
|
2014-07-04 14:32:37 +04:00
|
|
|
<div class="icon-loading-dark" style="display:none;"></div>
|
2013-08-07 20:18:09 +04:00
|
|
|
<span>
|
2013-08-30 13:17:31 +04:00
|
|
|
<?php p($l->t('Apps')); ?>
|
2013-08-07 20:18:09 +04:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<?php endif; ?>
|
2014-06-04 17:27:46 +04:00
|
|
|
|
|
|
|
</ul>
|
2013-12-10 04:45:15 +04:00
|
|
|
</div>
|
2011-08-09 12:30:37 +04:00
|
|
|
</div></nav>
|
|
|
|
|
2013-01-16 22:38:19 +04:00
|
|
|
<div id="content-wrapper">
|
2015-03-18 21:29:15 +03:00
|
|
|
<div id="content" class="app-<?php p($_['appid']) ?>" role="main">
|
2013-02-28 01:55:39 +04:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2013-01-16 22:38:19 +04:00
|
|
|
</div>
|
2011-03-02 13:56:48 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|