2024-10-19 18:19:38 -05:00
|
|
|
<section class="profile">
|
|
|
|
<header>
|
|
|
|
<h1><?= $char['name'] ?></h1>
|
|
|
|
<h3>Level <?= $char['level'] ?> <?= char_get_title($char['id'])['name'] ?></h3>
|
|
|
|
<h4>owned by <?= $char['user_id'] === user('id') ? 'you' : char_get_user($char)['username'] ?></h4>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="grid">
|
|
|
|
<section class="left">
|
|
|
|
<div class="avatar">
|
|
|
|
<img src="/assets/img/rathalos.webp">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= c_profile_stats($char) ?>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="right">
|
|
|
|
<div class="bio">
|
|
|
|
HELLO THERE MY FRIEND.
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</section>
|