diff options
Diffstat (limited to 'templates/actor_profile.php')
| -rw-r--r-- | templates/actor_profile.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/actor_profile.php b/templates/actor_profile.php index 45a0a59..0d99d05 100644 --- a/templates/actor_profile.php +++ b/templates/actor_profile.php @@ -6,6 +6,12 @@ <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> <p class="bio"><?= $actor->bio ?></p> </div>
\ No newline at end of file |
