{% extends 'weblog/weblog.html' %} {% load i18n %} {% block title_block %}{% if post_translation %}{{ post_translation.title }}{% else %}{{ post.title }}{% endif %}{% endblock %} {% block blog_content_block %}
{% blocktrans with publish_date=post.publish_date %}Published on {{ publish_date }}{% endblocktrans %}{% if post_author %}{% blocktrans with author=post_author context 'Written by (Author)' %}, by {% endblocktrans %}{% endif %}
{% if post_languages %} {% endif %}{% trans 'Categories' context 'Post categories' %}: {% for post_category in post_categories %} {{ post_category.name }} {% endfor %}
{% endif %} {% if enable_comments %}{{ comment.content }}
{{ comment.publish_date }}