From 5f3f9744fdaa6fb23ad40a6a556ec9f573ba0687 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 25 Feb 2020 20:57:16 +0000 Subject: [PATCH] Replies title --- blog.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/blog.py b/blog.py index 5e54a74f..fc1e0b5d 100644 --- a/blog.py +++ b/blog.py @@ -152,6 +152,11 @@ def htmlBlogPostContent(authorized: bool, \ blogStr+='

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

'+translate['About the author']+'

\n' + if not authorized: replies= \ noOfBlogReplies(baseDir,httpPrefix,translate, \ @@ -162,16 +167,13 @@ def htmlBlogPostContent(authorized: bool, \ '

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

' else: + blogStr+='

'+translate['Replies']+'

' blogStr+= \ getBlogReplies(baseDir,httpPrefix,translate, \ nickname,domain,domainFull, \ postJsonObject) blogStr+='

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

'+translate['About the author']+'

\n' return blogStr