{% extends "base.html" %} {% block title %} {{ article.title }} - {{ super() }} {% endblock title %} {% block content %}
{{ article.content }} {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
{% if ELEGANT_COMMENT_MESSAGE %}

{{ ELEGANT_COMMENT_MESSAGE }}

{% endif %}
{% include 'disqus_script_comment.html' %}
{% endif %}
{% if article.date %}

Published

{% set day = article.date.strftime('%d')|int %} {% endif %} {% if article.modified %}

Last Updated

{{ article.modified }} {% endif %} {% if article.category %}

Category

{{ article.category }} {% endif %} {% if article.tags %}

Tags

{% endif %}
{% endblock content %} {% block script %} {% include 'disqus_script_count.html' %} {% endblock script %}