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

{{ author.display_name }}

{{ date | date(format="%B %e, %Y") }}

{{ post.title }}

{{ 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 %} Add yours {% endif %}

Comments

{% for comment in comments %}
{{ comment.author.display_name }}
{{ comment.content | safe }}
Respond
{% endfor %}
Comment
{% endblock content %}