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 %}
|