diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-29 12:15:02 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-29 12:15:02 +0200 |
commit | c700f42b68f430e9c89ce97b92ea91323c9f6ed5 (patch) | |
tree | a53da8461636e293c871c080b10c4c5421852dc1 /apps/files_sharing/templates | |
parent | 1152f8b444d4889e624ca7421d8b20561b2a153d (diff) | |
parent | 9194603c3198c1b62e52f40f00b2d773cfa0ed5a (diff) | |
download | nextcloud-server-c700f42b68f430e9c89ce97b92ea91323c9f6ed5.tar.gz nextcloud-server-c700f42b68f430e9c89ce97b92ea91323c9f6ed5.zip |
Merge pull request #16517 from owncloud/remove-logo-wide
replace logo-wide on share page as well with better icon + text
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index fa349f29811..5a0119747f1 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -46,12 +46,22 @@ $thumbSize = 1024; <header><div id="header" class="<?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> - <div class="logo-wide svg"> - <h1 class="hidden-visually"> - <?php p($theme->getName()); ?> - </h1> + <div class="logo-icon svg"> </div> </a> + + <div class="header-appname-container"> + <h1 class="header-appname"> + <?php + if(OC_Util::getEditionString() === '') { + p($theme->getName()); + } else { + print_unescaped($theme->getHTMLName()); + } + ?> + </h1> + </div> + <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div class="header-right"> <span id="details"> |