{% extends "_layout/base.html" %} {% block title %} {{ post.title }} {% endblock %} {% block description %} {{ post.html | striptags | truncate(length=255 ,killwords=False)}} {% endblock %} {% block content %}

{{ post.title }}

{{ post.html |safe }}
{% if config.comment_system == 'disqus' %} {% include "_comments/disqus.html" %} {% elif config.comment_system == 'duoshuo' %} {% include "_comments/duoshuo.html" %} {% endif %}
{% endblock %}