lines after end of menu

main
Bob Mottram 2021-02-07 18:33:37 +00:00
parent c788674a9c
commit ff8d91316e
1 changed files with 4 additions and 1 deletions

View File

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