{% extends "base.html" %} {% block content %}
{% if user.display_image %} Profile Image {% else %} Default Profile {% endif %}

@{{ user.username }}

{% if user.bio %}
{{ user.bio | safe }}
{% endif %}

Latest Posts

{% for post in posts %} {% endfor %} {% if posts|length == 0 %}

No posts yet.

{% endif %}
{% endblock %}