diff options
author | Alan Pearce | 2024-05-17 13:31:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-17 13:58:29 +0200 |
commit | 054d2b3bf7eb4c5a5401565e86031f22ea754062 (patch) | |
tree | 7f8b883b5ce8374d949004e4588395f90b2bbc3b /frontend/templates/blocks/results.gotmpl | |
parent | d6e117bb9aeb2bae23dedd51b59b6e6f139e8a4f (diff) | |
download | searchix-054d2b3bf7eb4c5a5401565e86031f22ea754062.tar.lz searchix-054d2b3bf7eb4c5a5401565e86031f22ea754062.tar.zst searchix-054d2b3bf7eb4c5a5401565e86031f22ea754062.zip |
feat: improve accessibility and browser behaviour
Diffstat (limited to 'frontend/templates/blocks/results.gotmpl')
-rw-r--r-- | frontend/templates/blocks/results.gotmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/templates/blocks/results.gotmpl b/frontend/templates/blocks/results.gotmpl index 95c89ca..c375156 100644 --- a/frontend/templates/blocks/results.gotmpl +++ b/frontend/templates/blocks/results.gotmpl @@ -1,10 +1,10 @@ {{- define "results" }} {{- with .Results }} {{- if gt .Total 0 }} - <section id="results"> + <section id="results" role="list" aria-label="search results"> {{ block "hits" .Hits }} {{ end }} - <footer> + <footer aria-label="pagination"> <nav id="pagination"> {{- with $.Prev }} <a class="button" href="{{ . }}" rel="prev">Prev</a> @@ -13,11 +13,11 @@ <a class="button" href="{{ . }}" rel="next">Next</a> {{- end }} </nav> - <span>{{ .Total }} results</span> + <span role="status">{{ .Total }} results</span> </footer> </section> {{- else }} - Nothing found + <span role="status">Nothing found</span> {{- end }} {{- end }} {{- end }} |