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

{{ article.title }}

{% if article.author %}{{ article.author }} - {% endif %}{{ article.locale_date }} - {% if article.tags %}{% for tag in article.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}

{{ article.content }}
{% if DISQUS_SITENAME %}
{% endif %}
{% endblock %}