Try a different approach with menus

main
Bob Mottram 2021-02-07 21:57:48 +00:00
parent d47df56803
commit 5eeca981da
1 changed files with 7 additions and 1 deletions

View File

@ -908,5 +908,11 @@ def htmlKeyboardNavigation(banner: str, links: {},
htmlStr += '<li><label class="transparent">' + \
'<a href="' + str(url) + '">' + \
str(title) + '</a></label></li>'
htmlStr += '</ul></div>'
htmlStr += '</ul>'
if links:
htmlStr += '<pre aria-label="">'
for i in range(20):
htmlStr += '<br>'
htmlStr += '</pre>'
htmlStr += '</div>'
return htmlStr