This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/identity/view.html
2022-11-05 18:00:01 -06:00

26 lines
684 B
HTML

{% extends "base.html" %}
{% block title %}{{ identity }}{% endblock %}
{% block content %}
<h1 class="identity">
{% if identity.icon_uri %}
<img src="{{identity.icon_uri}}" class="icon">
{% endif %}
{{ identity }} <small>{{ identity.handle }}</small>
</h1>
{% if not identity.local %}
<p class="system-note">
This user is a member of another server.
<a href="{{ identity.profile_uri }}">See their original profile</a>
</p>
{% endif %}
{% for status in statuses %}
{% include "statuses/_status.html" %}
{% empty %}
No statuses yet.
{% endfor %}
{% endblock %}