From 2789e1e38c52bddfb43a76eeecb2f2134dbfbddf Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 15 Nov 2020 16:48:55 +0000 Subject: [PATCH] About at the bottom of left column --- webapp_column_left.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/webapp_column_left.py b/webapp_column_left.py index 471f243c..8422e59d 100644 --- a/webapp_column_left.py +++ b/webapp_column_left.py @@ -124,13 +124,6 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, # if showHeaderImage: # htmlStr += '
' - htmlStr += \ - '

' + \ - translate['About this Instance'] + '

' - htmlStr += \ - '

' + \ - translate['Terms of Service'] + '

' - linksFilename = baseDir + '/accounts/links.txt' linksFileContainsEntries = False if os.path.isfile(linksFilename): @@ -179,8 +172,16 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, '

' + lineStr + '

\n' linksFileContainsEntries = True + htmlStr += \ + '

' + \ + translate['About this Instance'] + '

' + htmlStr += \ + '

' + \ + translate['Terms of Service'] + '

' + if linksFileContainsEntries and not rssIconAtTop: htmlStr += '
' + rssIconStr + '
' + return htmlStr