26 lines
496 B
PHP
26 lines
496 B
PHP
|
<section class="profile">
|
||
|
<header>
|
||
|
<h1><?= char('name') ?></h1>
|
||
|
<h3>Level <?= char('level') ?> <?= char_get_title()['name'] ?></h2>
|
||
|
</header>
|
||
|
|
||
|
<div class="grid">
|
||
|
<section class="left">
|
||
|
<div class="avatar">
|
||
|
<img src="/assets/img/rathalos.webp">
|
||
|
</div>
|
||
|
|
||
|
<div class="stats">
|
||
|
<h4>Stats</h4>
|
||
|
<div>Power: <?= char('power') ?></div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<section class="right">
|
||
|
<div class="bio">
|
||
|
HELLO THERE MY FRIEND.
|
||
|
</div>
|
||
|
</section>
|
||
|
</div>
|
||
|
</section>
|