{% import 'translations.html' as translations with context %}
{% extends 'base.html' %}
{% block title %}{{article.title}}{% endblock %}
{% block head %}
{% if GOOGLE_PLUSONE %}
{% endif %}
{% endblock %}
{% block main_section %}
{{article.locale_date}}
{% include "twitter.html" %}
{% include "google_plusone.html" %}
{{ translations.translate(article) }}
{{article.content}}
{% endblock %}