Merge pull request #36633 from nextcloud/fix/36632-create_an_accessible_name_for_logo

Create an accessible name for logo on logged in page
This commit is contained in:
Julia Kirschenheuter 2023-02-13 10:32:42 +01:00 committed by GitHub
commit 9160b3791f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,11 @@ p($theme->getTitle());
<div class="header-left">
<a href="<?php print_unescaped($_['logoUrl'] ?: link_to('', 'index.php')); ?>"
id="nextcloud">
<div class="logo logo-icon"></div>
<div class="logo logo-icon">
<span class="hidden-visually">
<?php p($l->t('%s homepage', [$theme->getName()])); ?>
</span>
</div>
</a>
<nav id="header-left__appmenu"></nav>