blob: 45a0a594b7b5ef6425d84c1ce84dfb9b137af9af (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<div class="fullProfile">
<div class="basicInfo">
<?php call_template('actor_avatar', ['actor' => $actor]); ?>
<div>
<div class="displayName"><?= $actor->displayName ?></div>
<div class="handle">@<?= $actor->getFullHandle() ?></div>
<div class="joinedDate">Joined on <?= $actor->created->format('Y-m-d') ?></div>
</div>
</div>
<p class="bio"><?= $actor->bio ?></p>
</div>
|