diff --git a/webapp_timeline.py b/webapp_timeline.py index e00afa94..8d54ca4e 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -393,14 +393,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, iconsAsButtons) # start the timeline - tlStr += '\n' - tlStr += ' \n' - tlStr += ' \n' - tlStr += ' \n' - tlStr += ' \n' - tlStr += ' \n' - tlStr += ' \n' - tlStr += ' \n' + tlStr += '
\n' domainFull = getFullDomain(domain, port) @@ -409,11 +402,11 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, getLeftColumnContent(baseDir, nickname, domainFull, httpPrefix, translate, editor, False, None, rssIconAtTop, - True, False, theme) - tlStr += '
\n' + True, False) + tlStr += '
\n' + \ + leftColumnStr + '
\n' # center column containing posts - tlStr += ' \n' + tlStr += ' \n' # right column rightColumnStr = getRightColumnContent(baseDir, nickname, domainFull, @@ -612,15 +605,13 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, False, None, True, showPublishAsIcon, rssIconAtTop, publishButtonAtTop, - authorized, True, theme) - tlStr += ' \n' - tlStr += ' \n' + authorized, True) + tlStr += '
' + \ + rightColumnStr + '
\n' _logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '9') - tlStr += ' \n' - tlStr += '
' + \ - leftColumnStr + ' \n' + tlStr += '
\n' if not fullWidthTimelineButtonHeader: tlStr += \ @@ -602,7 +595,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, tlStr += '
\n' # end of column-center - tlStr += '
' + \ - rightColumnStr + '
\n' + tlStr += '\n' tlStr += htmlFooter() return tlStr