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

{{ article.title }}

{{ article.locale_date }}

{{ article.content }} {% include 'twitter.html' %}

By {{ article.author }}{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: {{ article.category }}{% endif %}

{% if article.tags %}

Tags: {% for tag in article.tags %} {{ tag }} / {% endfor %}

{% endif %}
{% if DISQUS_SITENAME %}

Comments

{% endif %} {% endblock %}