From: Michael Tremer Date: Sat, 1 Sep 2018 14:48:00 +0000 (+0100) Subject: blog: Fix space before comma X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1cec95974588040503ebe5e54b724b01c56aefd;p=ipfire.org.git blog: Fix space before comma Signed-off-by: Michael Tremer --- diff --git a/src/templates/blog/modules/post.html b/src/templates/blog/modules/post.html index 3725da77..d51099ac 100644 --- a/src/templates/blog/modules/post.html +++ b/src/templates/blog/modules/post.html @@ -12,10 +12,10 @@ {{ _("by") }} {% if isinstance(post.author, accounts.Account) %} - {{ post.author.name }} + {{ post.author.name }}, {% else %} - {{ post.author }} - {% end %}, + {{ post.author }}, + {% end %} {% if post.published_at %} {{ locale.format_date(post.published_at, shorter=True, relative=False) }}