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

Posted by {{ post.author }} on {{ post.pub_time.strftime('%b %d,%Y') }}

{{ post.title }}


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