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

{{ post.title }}

Written by {{ author.display_name }}{{ date | date(format="%B %e, %Y") }}

{{ post.content | safe }}

This article is under the {{ post.license }} license.

{{ n_likes }} like{{ n_likes | pluralize }}

{% if has_liked %} I don't like this anymore {% else %} Like {% endif %}

Comments

Comment
{% for comment in comments %} {% endfor %}
{% endblock content %}