{% extends 'base.html' %} {% load markup %} {% load comments %} {% block content %}

Title: {{post.title}}

Author: {{post.author}}

{{post.created_at}}

{{post.body|markdown}}


{% render_comment_list for post %}
{% get_comment_form for post as form %} {% csrf_token %} {{ form }}
Home {% endblock %}