DK2/templates/pages/profile/show.php

45 lines
844 B
PHP
Raw 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">
</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>
@TODO
</div>
<div class="inv">
<h4>Inventory</h4>
@TODO
2024-10-19 18:19:38 -05:00
</div>
</section>
</div>
</section>