{{ warning("postcard2.html is an old template path, that is no longer used by ablog. Please use ablog/postcard2.html instead.") }}
{% if post.published and post.date != post.update %}
{% if fa %}
{% else %}
{{ gettext('Update') }}:
{% endif %}
{{ post.update.strftime(ablog.post_date_format) }}
{% endif %}
{% if post.author %}
{% if fa %}
{% else %}
{{ gettext('Author')}}:
{% endif %}
{% for coll in post.author %}
{% if coll|length %}
{{ coll }}
{% if loop.index < post.author|length %}
,
{% endif %}
{% else %}
{{ coll }}
{% if loop.index < post.author|length %}
,
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if post.location %}
{% if fa %}
{% else %}
{{ gettext('Location') }}:
{% endif %}
{% for coll in post.location %}
{% if coll|length %}
{{ coll }}
{% if loop.index < post.location|length %}
,
{% endif %}
{% else %}
{{ coll }}
{% if loop.index < post.location|length %}
,
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if post.language %}
{% if fa %}
{% else %}
{{ gettext('Language') }}:
{% endif %}
{% for coll in post.language %}
{% if coll|length %}
{{ coll }}
{% if loop.index < post.language|length %}
,
{% endif %}
{% else %}
{{ coll }}
{% if loop.index < post.language|length %}
,
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if post.category %}
{% if fa %}
{% else %}
{{ gettext('Category') }}:
{% endif %}
{% for coll in post.category %}
{% if coll|length %}
{{ coll }}
{% if loop.index < post.category|length %}
,
{% endif %}
{% else %}
{{ coll }}
{% if loop.index < post.category|length %}
,
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if post.tags %}
{% 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 %}
{% else %}
{{ coll }}
{% if loop.index < post.tags|length %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if ablog.disqus_shortname and (ablog[pagename].published or ablog.disqus_drafts) %}