diff options
author | Felipe Leopoldo Sologuren GutiƩrrez <fsologureng@users.noreply.github.com> | 2023-01-28 22:29:10 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-29 09:29:10 +0800 |
commit | 2b1e47e2a2a5a31a0fc5039ed7dbb192a4a51dd7 (patch) | |
tree | a5469f84b8e917e07f77979c716710faedcd76d1 /templates/base/head_navbar.tmpl | |
parent | c0015979a692b795bcf7416196bec01c375d7aa2 (diff) | |
download | gitea-2b1e47e2a2a5a31a0fc5039ed7dbb192a4a51dd7.tar.gz gitea-2b1e47e2a2a5a31a0fc5039ed7dbb192a4a51dd7.zip |
Improve accessibility of navigation bar and footer (#22635)
Added ARIA navigation landmark to navigation bar and aria label for both
nav bar and footer.
Contributed by @forgejo.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'templates/base/head_navbar.tmpl')
-rw-r--r-- | templates/base/head_navbar.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/head_navbar.tmpl b/templates/base/head_navbar.tmpl index 3c4670e418..90a54608e6 100644 --- a/templates/base/head_navbar.tmpl +++ b/templates/base/head_navbar.tmpl @@ -1,4 +1,4 @@ -<div class="ui container" id="navbar"> +<div class="ui container" id="navbar" role="navigation" aria-label="{{.locale.Tr "aria.navbar"}}"> {{$notificationUnreadCount := 0}} {{if .IsSigned}} {{if .NotificationUnreadCount}}{{$notificationUnreadCount = call .NotificationUnreadCount}}{{end}} |