{% extends "base.html" %} {% load activity_tags %} {% block title %}{{ identity }}{% endblock %} {% block opengraph %} {% include "_opengraph.html" with opengraph_local=identity.to_opengraph_dict %} {% endblock %} {% block extra_head %} {% if identity.local %} {% endif %} {% endblock %} {% block content %}
{% if identity.local_image_url %} {% endif %} Profile image for {{ identity.name }}

{{ identity.html_name_or_handle }}

@{{ identity.handle }} {% if identity.summary %}
{{ identity.safe_summary }}
{% endif %}
{% if not identity.local %}
{% if identity.outdated and not identity.name %} The system is still fetching this profile. Refresh to see updates. {% else %} This is a member of another server. See their original profile ➔ {% endif %}
{% else %} {% include "identity/_tabs.html" %} {% block subcontent %}
{% for post in pinned_posts %}
Pinned post
{% include "activities/_post.html" %} {% endfor %} {% for event in page_obj %} {% if event.type == "post" %} {% include "activities/_post.html" with post=event.subject_post %} {% elif event.type == "boost" %}
{{ event.subject_identity.html_name_or_handle }} boosted
{% include "activities/_post.html" with post=event.subject_post %} {% endif %} {% empty %} {% if identity.local %} No posts yet. {% else %} No posts have been received by this server yet. {% if identity.profile_uri %} You may find historical posts at their original profile ➔ {% endif %} {% endif %} {% endfor %}
{% endblock %} {% endif %} {% endblock %}