{% extends 'layout.html' %} {% block nav_profile %} active {% endblock %} {% block content %}
{% if user.profile.profile_pic %} {% endif %}

{% if user.verified %} {% endif %}{{ user.displayname }} on Tweeder

{% if user.profile.bio %} {{ user.profile.bio }} {% else %} Tweeder user since 1984 {% endif %}

{{ user.displayname }}' Profile

{% if following %}
{% else %}
{% endif %}
{{ posts|count }} Posts
{{ user.following|count }} Following
{% if user.profile.location %} {{ user.profile.location }}
{% endif %} {% if user.profile.gender %} {{ user.profile.gender }} {% endif %}
{% if posts %} {% for post in posts if not post.hidden %}
{{ post.poster }} at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if logged_in|lower in post.likes %}
{% else %}
{% endif %} {% if logged_in == post.poster %} {% endif %}
{{ post.content }}
{% endfor %} {% else %} No posts found! {% endif %}
{% endblock %}