{{ article.title }}
- By {% for author in article.authors %}{{ author }}{% if not loop.last %}, {% endif%}{% endfor %}
- {{ article.locale_date }} {% if article.modified %}
- Updated on {{ article.locale_modified }} {% endif %}
{% extends "with-sidebar.html" %}
{% block title %} - {{ article.title }}{% endblock title %}
{% 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() }}
{% if article.image %}
{% else %}
{% endif %}
{% endblock %}
{% block image_header %}
{% if article.image_header %}
{% elif ARTICLE_PAGE_IMAGE_HEADER %}
{% endif %}
{% endblock image_header %}
{% block page_breadcrumbs %}