{% 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 and page.modified != page.date %}

Last Updated

{% set day = page.modified.strftime('%d')|int %} {% endif %} {% include 'social_links.html' %} {% include 'mailchimp.html' %}
{% endblock content %} {% block script %} {{ super() }} {% endblock script %}