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 | |
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')
-rw-r--r-- | templates/base/footer_content.tmpl | 6 | ||||
-rw-r--r-- | templates/base/head_navbar.tmpl | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl index 89be609225..c3b96a0245 100644 --- a/templates/base/footer_content.tmpl +++ b/templates/base/footer_content.tmpl @@ -1,6 +1,6 @@ -<footer> +<footer role="group" aria-label="{{.locale.Tr "aria.footer"}}"> <div class="ui container"> - <div class="ui left"> + <div class="ui left" role="contentinfo" aria-label="{{.locale.Tr "aria.footer.software"}}"> <a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.locale.Tr "powered_by" "Gitea"}}</a> {{if (or .ShowFooterVersion .PageIsAdmin)}} {{.locale.Tr "version"}}: @@ -15,7 +15,7 @@ {{.locale.Tr "template"}}{{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong> {{end}} </div> - <div class="ui right links"> + <div class="ui right links" role="group" aria-label="{{.locale.Tr "aria.footer.links"}}"> {{if .ShowFooterBranding}} <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea">{{svg "octicon-mark-github"}}<span class="sr-only">GitHub</span></a> {{end}} 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}} |