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

{{ post.title }}

Published in {{ blog.title }}


{{ post.content | safe }}

License: {{ post.license }}


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

Add yours

Comments

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