• {{ gettext('Date') }}
    {% if post.published %} {{ post.date.strftime(ablog.post_date_format) }} {% else %} {% if post.date %}{{ post.date.strftime(ablog.post_date_format) }} {% else %} {{ gettext('Draft') }} {% endif %} {% endif %}
  • {{ gettext('Published') }}
    {% if post.published and post.date != post.update %} {{ gettext('Update') }}: {{ post.update.strftime(ablog.post_date_format) }} {% endif %}
  • {{ gettext('Author(s)') }}
    {% if post.author %} {% 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 %}
  • {{ gettext('Location') }}
    {% if post.location %} {% 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 %}
  • {{ gettext('Language') }}
    {% if post.language %} {% 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 %}
  • {{ gettext('Category') }}
    {% if post.category %} {% 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 %}
  • {{ gettext('Tags') }}
    {% if post.tags %} {% if post.tags|length > 1 %} {% else %}{% 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 %}