diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-20 14:45:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 14:45:35 +0200 |
commit | de08b53b4eaa69621de0e863071c55671e74441c (patch) | |
tree | ac765cb3e0747e29f8b4d2b5702620f4d2af56da /core | |
parent | f24ce9b530268139488827de954837dfc5f78a1b (diff) | |
parent | e3dc796e5d0c7ac48441ebf2e5b3ca59f3b14b82 (diff) | |
download | nextcloud-server-de08b53b4eaa69621de0e863071c55671e74441c.tar.gz nextcloud-server-de08b53b4eaa69621de0e863071c55671e74441c.zip |
Merge pull request #33266 from nextcloud/bugfix/noid/skip-content-public
Add skip content buttons to the public page layout
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.public.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 17752de10cd..7251560cb65 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -31,6 +31,11 @@ <?php foreach ($_['initialStates'] as $app => $initialState) { ?> <input type="hidden" id="initial-state-<?php p($app); ?>" value="<?php p(base64_encode($initialState)); ?>"> <?php }?> + <div id="skip-actions"> + <?php if ($_['id-app-content'] !== null) { ?><a href="<?php p($_['id-app-content']); ?>" class="button primary skip-navigation skip-content"><?php p($l->t('Skip to main content')); ?></a><?php } ?> + <?php if ($_['id-app-navigation'] !== null) { ?><a href="<?php p($_['id-app-navigation']); ?>" class="button primary skip-navigation"><?php p($l->t('Skip to navigation of app')); ?></a><?php } ?> + </div> + <div id="notification-container"> <div id="notification"></div> </div> |