{% load i18n %}
{{article.title}}
{% if show_published_time %}
{% if show_published_time %}{% trans "Article Published Time:" %}{{article.published_time}}{% endif %}
{% if show_author %}{% trans "Article Author:" %}{{article.author}}{% endif %}
{% endif %}
{% if show_description %}
{% autoescape off %}{{article.description}}{% endautoescape %}
{% endif %}
{% autoescape off %}{{article.content}}{% endautoescape %}
{% if show_prev_and_next_links %}
{% if prev %}
{% trans "Prev Article:" %}
{{prev.title}}
{% endif %}
{% if next %}
{% trans "Next Article:" %}
{{next.title}}
{% endif %}
{% endif %}