{% extends "base.html" %} {% block title %}{{ identity }}{% endblock %} {% block body_class %}has-banner{% endblock %} {% block content %} <h1 class="identity"> {% if identity.local_image_url %} <img src="{{ identity.local_image_url }}" class="banner"> {% endif %} <img src="{{ identity.local_icon_url }}" class="icon"> {% if request.identity %} {% if identity == request.identity %} <form class="inline follow"> <a class="button" href="{% url "settings_profile" %}">Edit Profile</a> </form> {% else %} <form action="{{ identity.urls.action }}" method="POST" class="inline follow {% if reverse_follow %}has-reverse{% endif %}"> {% csrf_token %} {% if reverse_follow %} <span class="reverse-follow">Follows You</span> {% endif %} {% if follow %} <input type="hidden" name="action" value="unfollow"> <button>Unfollow</button> {% else %} <input type="hidden" name="action" value="follow"> <button>Follow</button> {% endif %} </form> {% endif %} {% endif %} {{ identity.name_or_handle }} <small>@{{ identity.handle }}</small> </h1> {% if identity.summary %} <div class="bio"> {{ identity.safe_summary }} </div> {% endif %} {% if not identity.local %} {% if identity.outdated and not identity.name %} <p class="system-note"> The system is still fetching this profile. Refresh to see updates. </p> {% else %} <p class="system-note"> This is a member of another server. <a href="{{ identity.profile_uri }}">See their original profile ➔</a> </p> {% endif %} {% endif %} {% for post in posts %} {% include "activities/_post.html" %} {% empty %} <span class="empty">No posts yet.</a> {% endfor %} {% endblock %}