{% extends "base.html" %} {% block content %}

{{ article.title }}

published {{ article.date.strftime('%Y-%m-%d') }}

{% if article.author and SHOW_ARTICLE_AUTHOR %}
By {{ article.author }}
{% endif %}
{{ article.content }}
{% endblock %}