{% extends "base.html" %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% for description in article.description %} {% endfor %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block opengraph %} {{ super() }} {% endblock %} {% block header %} {% if article.header_cover %}
{% else %}
{% endif %}

{{ article.title }}

{% if article.headline %}

{{ article.headline }}

{% endif %} Posted by {% for author in article.authors %} {{ author }} {% endfor %} on {{ article.locale_date }} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{% endblock header %} {% block content %}
{{ article.content }}

{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}

Comments !

{% endif %} {% endblock content %}