aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/actor_profile.php
blob: f721fc8d3b4d88129d97e0f6a812e6de9a161542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>
            <?php if (!$actor->isLocal): ?>
                <a class="icon material-symbols-outlined" href="<?= $actor->homepage ?>" title="Open remote profile page"
                    target="_blank">open_in_new</a>
            <?php endif; ?>
        </div>
    </div>
    <?php if (isset($actor->bio) && $actor->bio != '') { ?>
        <p class="bio"><?= $actor->bio ?></p>
    <?php } else {
        call_template('placeholder_text', ['message' => "This user hasn't written a bio yet."]);
    } ?>
</div>