diff --git a/blog.py b/blog.py index aad118a7c..019b34c3e 100644 --- a/blog.py +++ b/blog.py @@ -225,7 +225,7 @@ def htmlBlogPostContent(authorized: bool, 'content') blogStr += '
' + contentStr + '\n' - blogStr += '

\n' + blogStr += '
\n' if not linkedAuthor: blogStr += '

' + \ - translate['Replies'].lower() + ': ' + str(replies) + '

\n' + translate['Replies'].lower() + ': ' + str(replies) + \ + '

' else: blogStr += '

' + translate['Replies'] + '

\n' blogStr += '\n' @@ -252,7 +253,8 @@ def htmlBlogPostContent(authorized: bool, nickname, domain, domainFull, postJsonObject['object']['id']) blogStr += blogRepliesStr.replace('>' + titleStr + '<', '') - blogStr += '

\n' + blogStr += '
' + blogStr += '
\n' return blogStr