{% extends "base.html" %} {% set subtitle = post.title|striptags -%} {% block content %}
{% block post_title %}

{{ post.title|striptags }}

{% endblock %} {% include 'includes/post_meta.html' %} {{ post.content }}
{% if post.previtem or post.nextitem %}
{% if post.previtem %}
← {{ post.previtem.title|striptags }}
{% endif %} {% if post.nextitem %}
{{ post.nextitem.title|striptags }} →
{% endif %}
{% endif %} {% include 'includes/disqus_comments.html' %} {% endblock %}