{% extends 'layouts/index.html' %} {% block content %}
{{ post.text }}
Posted by {{ author.name }} {{ post.get_time_ago() }} ago.
{% if current_user.is_authenticated %} {% with messages = get_flashed_messages() %} {% if messages %} {{ messages[0] }} {% endif %} {% endwith %}
{% endif %} {% for comment, author in comments_and_authors %}
"{{ comment.text }}"{{ author.name }}
{% endfor %}
{% endblock %}