{% extends "base.html" %} {% block title %} {{ article.title }} - {{ super() }} {% endblock title %} {% block head_description %} {% if article.summary %} {{ article.summary|striptags }} {% endif %} {% endblock head_description %} {% block meta_tags_in_head %} {% if article.tags or article.category or article.keywords %} {% endif %} {% endblock meta_tags_in_head %} {% block content %}
{% if article.toc %}
{% else %}
{% endif %} {{ 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 %} {% if MAILCHIMP_FORM_ACTION %} {% if not EMAIL_SUBSCRIPTION_LABEL %} {% set EMAIL_SUBSCRIPTION_LABEL='Email Newsletter' %} {% endif %} {% if not SUBSCRIBE_BUTTON_TITLE %} {% set SUBSCRIBE_BUTTON_TITLE='Subscribe' %} {% endif %} {% if not EMAIL_PLACEHOLDER %} {% set EMAIL_PLACEHOLDER ='email address' %} {% endif %}

{{ EMAIL_SUBSCRIPTION_LABEL }}

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