{% extends "base.html" %} {% block head %} {% endblock %} {% block title %}{{ article.title }} | {{ SITENAME }}{% endblock %} {% block subheader %}

Posted {% if article.author %} by{% if AUTHORS_URL %} {{ article.author }} {% else %} {{ article.author}} {% endif %} {% endif %} on {{ article.locale_date }}

{% endblock %} {% block content %}

{{ article.title }}

{{ article.content }}
{% if CATEGORY_URL %}

Category: {{ article.category }}

{% endif %} {% if TAG_URL and article.tags %}

Tags: {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %}

{% endif %} {% if DISQUS_SITENAME %}

Comments: toggle

{% endif %}
{% if DISQUS_SITENAME %} {% if COLLAPSE_COMMENTS %} {% endif %}
{% endif %}
{% endblock %}