{% extends "blog/base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

Published {{ post.publish }} by {{ post.author }}

{{ post.body|linebreaks }}

Share this post

{% with comments.count as total_comments %}

{{ total_comments }} comment{{ total_comments|pluralize }}

{% endwith %} {% for comment in comments %}

Comment {{ forloop.counter }} by {{ comment.name }} {{ comment.created }}

{{ comment.body|linebreaks }}
{% empty %}

There are no comments yet.

{% endfor %} {% include "blog/post/includes/comment_form.html" %} {% endblock %}