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

{{ article.title }}

{{ article.locale_date }}

{{ article.content }}

{% if not SUPPRESS_ITEM_CATEGORIES %}Category: {{ article.category }}{% endif %} | {% if article.tags %}Tags: {% for tag in article.tags %} {{ tag }} {% if not loop.last %} / {% endif %} {% endfor %}

{% endif %}
{% if DISQUS_SITENAME %}

Comments

{% endif %} {% endblock %}