{% block title%}{{ post['title'] }}{% endblock %}
by {{ post['username'] }} on {{post['created'].strftime('%Y-%m-%d')}}
{% extends 'base.html' %}
{% block header %}
{% if g.user['id'] == post['author_id'] %}
Edit
{% endif %}
{% block title%}{{ post['title'] }}{% endblock %}
by {{ post['username'] }} on {{post['created'].strftime('%Y-%m-%d')}}
{{ post['body'] }}
{{ comment['body'] }}