Skip to content

Commit

Permalink
Merge pull request #36633 from nextcloud/fix/36632-create_an_accessib…
Browse files Browse the repository at this point in the history
…le_name_for_logo

Create an accessible name for logo on logged in page
  • Loading branch information
JuliaKirschenheuter authored Feb 13, 2023
2 parents 610a203 + 2b39261 commit 9160b37
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/templates/layout.user.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@
<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>
Expand Down

0 comments on commit 9160b37

Please sign in to comment.