]> git.ipfire.org Git - ipfire.org.git/commitdiff
blog: Fix space before comma
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Sep 2018 14:48:00 +0000 (15:48 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Sep 2018 14:48:00 +0000 (15:48 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/blog/modules/post.html

index 3725da77cafea0f2d14392e589ec04695bb0ac71..d51099ac473d96b7eaf09a6ef8d9f8e8ee952644 100644 (file)
                        {{ _("by") }}
 
                        {% if isinstance(post.author, accounts.Account) %}
-                               <a href="/authors/{{ post.author.uid }}">{{ post.author.name }}</a>
+                               <a href="/authors/{{ post.author.uid }}">{{ post.author.name }}</a>,
                        {% else %}
-                               <strong>{{ post.author }}</strong>
-                       {% end %},
+                               <strong>{{ post.author }}</strong>,
+                       {% end %}
 
                        {% if post.published_at %}
                                {{ locale.format_date(post.published_at, shorter=True, relative=False) }}