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