Add filename and sharer in public page

* shows the filename and sharer on the public page
* allows the user to identify, that this is a user page and not an official page of the Nextcloud hosting
* remove link on logo that redirects to login (fixes #5720)

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2017-07-21 18:28:36 +02:00
parent a33b6cdd21
commit b2b4691e48
2 changed files with 16 additions and 4 deletions

View File

@ -215,3 +215,13 @@ thead {
max-width: 400px;
text-align: left;
}
#header .header-shared-by {
display: inline-block;
color: $color-primary-text;
position: relative;
top: -10px;
font-weight: 300;
font-size: 12px;
margin-top: 10px;
}

View File

@ -36,13 +36,15 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
<header><div id="header" class="<?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>">
<div id="header-left">
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
title="" id="nextcloud">
<span id="nextcloud">
<div class="logo logo-icon svg"></div>
<h1 class="header-appname">
<?php p($theme->getName()); ?>
<?php p($_['filename']); ?>
</h1>
</a>
<div class="header-shared-by">
<?php echo p($l->t('shared by %s', [$_['displayName']])); ?>
</div>
</span>
</div>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>