{% extends "base.html" %} {% from "macros/feed.html" import feed_post, stop_scrolling, no_more_scrolling with context %} {% from "macros/title.html" import title_tag with context %} {% from "macros/icon.html" import icon, big_icon, callout with context %} {% from "macros/nav.html" import nav_user with context %} {% block title %}{{ title_tag(user.handle() + '’s content') }}{% endblock %} {% block heading %}

{{ user.handle() }}

{% endblock %} {% block nav %} {% if user.is_active and not user.has_blocked(current_user.user) %} {{ nav_user(user) }} {% endif %} {% endblock %} {% block content %} {% if l and l.pages > 0 %} {% if not user.is_active %} {% call callout('ban') %}The account {{ user.handle() }} is suspended{% endcall %} {% endif %} {% elif not user.is_active %} {{ big_icon('ban') }}

{{ user.handle() }} is suspended

{% else %}

{{ user.handle() }} has never posted any content

{% endif %} {% endblock %}