diff options
Diffstat (limited to 'templates/actor_profile.php')
| -rw-r--r-- | templates/actor_profile.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/actor_profile.php b/templates/actor_profile.php new file mode 100644 index 0000000..45a0a59 --- /dev/null +++ b/templates/actor_profile.php @@ -0,0 +1,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>
\ No newline at end of file |
