{% import "macros.html" as macros %} {% extends "root.html" %} {% block head %} {{ profile.username }} - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{{ components::banner(username=profile.username) }}
{{ components::avatar(username=profile.username,size="72px") }}

{{ components::username(user=profile) }} {% if profile.is_verified %} {{ icon "badge-check" }} {% endif %}

{{ profile.username }}
{{ profile.settings.biography|markdown|safe }}
ID
Joined {{ profile.created }}
{% if not is_self and user %}
{{ text "auth:label.relationship" }}
{% if not is_blocking %} {% if not is_following %} {% else %} {% endif %} {% else %} {% endif %}
{% endif %} {% if not profile.settings.private_communities or is_self or is_helper %}
{{ icon "users-round" }} {{ text "auth:label.joined_communities" }}
{% endif %}
{% if is_helper %}
{{ icon "shield" }} {{ text "auth:label.moderation" }}
{{ icon "settings" }} View settings {% if profile.permissions != 131073 %} {% else %} {% endif %}
{% endif %} {% block content %}{% endblock %}
{% endblock %}