{% extends 'base.html' %} {% block title %} {{ page.title|striptags|e }} {%if page.subtitle %} - {{ page.subtitle|striptags|e }} {% endif %} ยท {{ super() }} {% endblock title %} {% block head_description %} {% if page.summary %} {{ page.summary|striptags|e }} {% endif %} {% endblock head_description %} {% block meta_tags_in_head %} {{ super() }} {% if page.keywords %} {% endif %} {% from '_includes/smo_metadata.html' import smo_metadata with context %} {{ smo_metadata(page) }} {% endblock meta_tags_in_head %} {% block content %}
{% if page.toc %}
{% else %}
{% endif %} {{ page.content }} {% from '_includes/comments.html' import comments with context %} {{ comments(page) }}
{% include '_includes/social_links.html' %} {% include '_includes/mailchimp.html' %}
{% endblock content %} {% block script %} {{ super() }} {% from '_includes/comments.html' import comments_script with context %} {{ comments_script(page) }} {% endblock script %}