{% extends "base.html" %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block content %}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{{ article.locale_date }} {% if article.authors %}
By {% for author in article.authors|sort %} {{ author }} {% endfor %}
{% endif %}
{{ article.content }}
{% if DISQUS_SITENAME %}

Comments

{% endif %} {% if JUVIA_ID %}

Comments

{% endif %}
{% include 'sidebar.html' %}
{% endblock %}