{% extends 'base.html' %}
{% load datetime_filter %}
{% load humanize %}
{% block title %}
{{ post.title }}
{% endblock %}
{% block body %}
{{post.title}}
{{ post.author.username }}
submitted
{{ post.score }} point{{ post.score|pluralize}}
{{ post.content_html | safe }}
{% endblock %}