{% extends "base.html" %} {% block title %} {{ page.title }} {%if page.subtitle %} - {{ page.subtitle }} {% endif %} ยท {{ super() }} {% endblock title %} {% block head_description %} {% if page.summary %} {{ page.summary|striptags }} {% endif %} {% endblock head_description %} {% block meta_tags_in_head %} {% if page.keywords %} {% endif %} {% endblock meta_tags_in_head %} {% block content %}
{% if page.toc %}
{% else %}
{% endif %} {{ page.content }}
{% if page.date %}

Published

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

Last Updated

{{ page.modified }}
{% 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() }} {% endblock script %}