{% 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 %}