{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}

{{ article.title }}

{{article.headline}}

{{ article.date | strftime('%b') }} {{ article.date | strftime('%d') }} {{ article.date | strftime('%Y') }}
Date: {{ (article.modified or article.date).strftime('%Y-%m-%d') }}   Author{% if article.authors|count > 1 %}s{% endif %}: {% for author in article.authors %}{{author}}{% if not loop.last %}, {% endif %}{%endfor%} {% if article.tags|count %}   Tag{% if article.tags|count > 1 %}s{% endif %}: {% for tag in article.tags %}{{tag}}{% if not loop.last %}, {% endif %}{%endfor%} {% endif %}

{{ article.content }}
{% endblock %}