diff --git a/ablog/templates/postcard2.html b/ablog/templates/postcard2.html
index 3cd279b..2a25ae7 100644
--- a/ablog/templates/postcard2.html
+++ b/ablog/templates/postcard2.html
@@ -1,10 +1,10 @@
{% if post.published and post.date != post.update %}
-
{% if fa %}{% else %}{{ gettext('Update') }}:{% endif %}
+ {% if fa %}{% else %}{{ gettext('Update') }}:{% endif %}
{{ post.update.strftime(gettext(ablog.post_date_format)) }}
{% endif %}
{% if post.author %}
- {% if fa %}{% else %}{{ gettext('Author') }}:{% endif %}
+ {% if fa %}{% else %}{{ gettext('Author') }}:{% endif %}
{% for coll in post.author %}
{% if coll|length %}
{{ coll }}{% if loop.index < post.author|length %},{% endif %}
@@ -13,7 +13,7 @@
{% endif %}
{% if post.location %}
- {% if fa %}{% else %}{{ gettext('Location') }}:{% endif %}
+ {% if fa %}{% else %}{{ gettext('Location') }}:{% endif %}
{% for coll in post.location %}
{% if coll|length %}
{{ coll }}{% if loop.index < post.location|length %},{% endif %}
@@ -22,7 +22,7 @@
{% endif %}
{% if post.language %}
- {% if fa %}{% else %}{{ gettext('Language') }}:{% endif %}
+ {% if fa %}{% else %}{{ gettext('Language') }}:{% endif %}
{% for coll in post.language %}
{% if coll|length %}
{{ coll }}{% if loop.index < post.language|length %},{% endif %}
@@ -31,7 +31,7 @@
{% endif %}
{% if post.category %}
- {% if fa %}{% else %}{{ gettext('Category') }}:{% endif %}
+ {% if fa %}{% else %}{{ gettext('Category') }}:{% endif %}
{% for coll in post.category %}
{% if coll|length %}
{{ coll }}{% if loop.index < post.category|length %},{% endif %}
@@ -40,8 +40,8 @@
{% endif %}
{% if post.tags %}
- {% if post.tags|length > 1 %}{% if fa %}{% else %}{{ gettext('Tags') }}:{% endif %}
- {% else %}{% if fa %}{% else %}{{ gettext('Tag') }}:{% endif %}{% endif %}
+ {% if post.tags|length > 1 %}{% if fa %}{% else %}{{ gettext('Tags') }}:{% endif %}
+ {% else %}{% if fa %}{% else %}{{ gettext('Tag') }}:{% endif %}{% endif %}
{% for coll in post.tags %}
{% if coll|length %}
{{ coll }}{% if loop.index < post.tags|length %}{% endif %}