{% extends "layout.html" %} {% block content %}

Hello, {{ current_user.username }}!

Recent Posts:

{% for post in posts %}
Profile Image

{{ post.author.username }}

{{ post.content }}

{% if post.filename %} Post Image {% endif %}

{{ post.comments | length }}

{% endfor %} {% endblock %}