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 14:17:27 -06:00

14 lines
312 B
HTML

{% extends "base.html" %}
{% block title %}{{ identity }}{% endblock %}
{% block content %}
<h1>{{ identity }} <small>{{ identity.handle }}</small></h1>
{% for status in statuses %}
{% include "statuses/_status.html" %}
{% empty %}
No statuses yet.
{% endfor %}
{% endblock %}