{% extends "base.html" %} {% block page_title %}{{ content.title }}{% endblock %} {% block page_description %} {{ content.meta.get('summary', content.body[:160]) }} {% endblock %} {% block pageclass %}page{% endblock %} {% block content %}

{{ content.title }}

{% if content.meta.get('date') %} Posted at — {{ date_format(content.meta['date'], '%b %d, %Y').replace(" 0", " ") }} {% endif %}
{{ content.html | safe }}
{% if content.meta.get('updated') and content.meta.get('date') != content.meta['updated'] %} Updated at — {{ date_format(content.meta['updated'], '%b %d, %Y').replace(" 0", " ") }} {% endif %} {% if content.meta.get('tags') %} {% endif %}
{% if config.SITE.get('disqus') and content_type(content.path, 'post') %} {{ disqus_html | safe }} {% endif %} {% endblock %}