{% extends "base.html" %} {% block content %} {% include 'flash.html' %}

{{ user.nickname }}

{% if user.about_me %}

{{ user.about_me }}

{% endif %} {% if user.last_seen %}

Last seen: {{ momentjs(user.last_seen).calendar() }}

{% endif %}

Followers: {{ user.followers.count() - 1 }} | Following: {{ user.followed.count() - 1 }} | {% if user.id == g.user.id %} Edit your profile {% elif not g.user.is_following(user) %} Follow {% else %} Unfollow {% endif %}

{% for post in posts.items %} {% include 'post.html' %} {% endfor %} {% endblock %}