mirror of
https://github.com/jointakahe/takahe.git
synced 2024-12-23 22:10:28 +00:00
14 lines
312 B
HTML
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 %}
|