DK2/templates/pages/profile/show.php

50 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2024-10-19 18:19:38 -05:00
<section class="profile">
<header>
2024-10-23 21:15:55 -05:00
<h1><?= $c->name ?></h1>
<h3>Level <?= $c->level ?> <?= $c->title()['name'] ?></h3>
<h5>owned by <?= $c->user_id === user()->id ? 'you' : $c->user()->username ?></h5>
2024-10-19 18:19:38 -05:00
</header>
<div class="grid">
<section class="left">
<div class="avatar">
<img src="/assets/img/rathalos.webp">
2024-10-24 18:23:55 -05:00
<img class="border" src="/assets/img/ui/borders/water.webp">
2024-10-19 18:19:38 -05:00
</div>
2024-10-23 21:15:55 -05:00
<?= c_profile_stats($c) ?>
<div class="badges">
<h4>Badges</h4>
@TODO
</div>
<div class="traits">
<h4>Traits</h4>
@TODO
</div>
2024-10-19 18:19:38 -05:00
</section>
<section class="right">
<div class="bio">
2024-10-23 21:15:55 -05:00
<h4>Biography</h4>
<?= !empty($c->bio) ? parse_bbcode($c->bio)['html'] : "<i>[No bio.]</i>" ?>
</div>
<div class="gear">
<h4>Equipped Gear</h4>
2024-10-24 18:23:55 -05:00
<?= c_equipped_gear($c) ?>
2024-10-23 21:15:55 -05:00
</div>
<div class="inv">
<h4>Inventory</h4>
2024-10-24 18:23:55 -05:00
<?php
for ($i = 0; $i < $c->inv_slots; $i++) {
echo '<img class="mr-1" src="/assets/img/ui/2x3.png">';
}
?>
2024-10-19 18:19:38 -05:00
</div>
</section>
</div>
</section>