{% extends "base.html" %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% if description %} {% elif article.headline %} {% elif article.summary %} {% endif %} {% for author in article.authors %} {% endfor %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block twitter_card %} {% for name,link in SOCIAL if name in ['twitter'] %} {% if article.twitter_image %} {% if article.twitter_image|lower|truncate(4, True, '') == "http" %} {% else %} {% endif %} {% elif article.header_cover %} {% elif HEADER_COVER %} {% else %} {% endif %} {% if description %} {% elif article.headline %} {% else %} {% endif %} {% endfor %} {% endblock %} {% block opengraph %} {{ super() }} {% for author in article.authors %} {% endfor %} {% if description %} {% elif article.headline %} {% elif article.summary %} {% endif %} {% if article.og_image %} {% if article.og_image|lower|truncate(4, True, '') == "http" %} {% else %} {% endif %} {% elif article.header_cover %} {% elif HEADER_COVER %} {% else %} {% endif %} {% endblock %} {% block header %} {% if article.header_cover %}
{% elif HEADER_COVER %}
{% elif HEADER_COLOR %}
{% else %}
{% endif %}

{{ article.title|striptags }}

{% if article.headline %}

{{ article.headline }}

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

tags: {% for tag in article.tags %}{{ tag | escape }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {% include 'sharing.html' %}
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}

Comments !

{% endif %} {% endblock content %}