{% extends "includes.html" %} {% block contenttop %}

{{ post.title }}

{% endblock contenttop %} {% block content %} {% load gallerfy %}

{{ post.title }}

{% if user == post.author %}
Edit
{% endif %}
{{ post.created }}
{{ post.author }}
{{ post.body_rendered|gallerfy|safe }}
{% for tag in post.tags.all %} {{tag}} {% endfor %}
{% endblock content %}