{% extends "base.html" %} {% block title %} {{ article.title }} - {{ super() }} {% endblock title %} {% block head_description %} {% if article.summary %} {{ article.summary|striptags }} {% endif %} {% endblock head_description %} {% block content %}
{{ article.content }} {% include 'comments.html' %}
{% 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 %} {{ super() }} {% include 'disqus_script_count.html' %} {% endblock script %}