{% extends "base.html" %}
{% block title %}{{ article.title|striptags }} - {{ SITETITLE }}{% endblock %}
{% block head %}
{{ super() }}
{% for keyword in article.keywords %}
{% endfor %}
{% if article.description %}
{% for description in article.description %}
{% endfor %}
{% elif article.summary %}
{% endif %}
{% for tag in article.tags %}
{% endfor %}
{% if article.authors %}
{% for author in article.authors %}
{% endfor %}
{% endif %}
{% if article.summary %}
{% else %}
{% endif %}
{% endblock head %}
{% block content %}
{{ article.locale_date }}
{% if article.authors %}
by {% for author in article.authors %}
{{ author }} {% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{{ article.content }}
{% endblock content %}