Right nax no longer uses tables

This commit is contained in:
Sky Johnson 2024-12-13 12:51:10 -06:00
parent 61ae46714d
commit 82a2e42cb9

View File

@ -1,8 +1,7 @@
<?php <?php
$template = <<<THEVERYENDOFYOU $template = <<<HTML
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_character.gif" alt="Character" title="Character" /></td></tr> <div class="title"><img src="/img/button_character.gif" alt="Character" title="Character"></div>
<tr><td>
<b>{{username}}</b><br> <b>{{username}}</b><br>
Level: {{level}}<br> Level: {{level}}<br>
Exp: {{experience}}<br> Exp: {{experience}}<br>
@ -12,28 +11,20 @@ MP: {{currentmp}}<br>
TP: {{currenttp}}<br> TP: {{currenttp}}<br>
{{statbars}}<br> {{statbars}}<br>
<a href="javascript:opencharpopup()">Extended Stats</a> <a href="javascript:opencharpopup()">Extended Stats</a>
</td></tr> </section>
</table><br>
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory" /></td></tr> <div class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory"></div>
<tr><td> <img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon"> Weapon: {{weaponname}}<br>
<table width="100%"> <img src="/img/icon_armor.gif" alt="Armor" title="Armor"> Armor: {{armorname}}<br>
<tr><td><img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon" /></td><td width="100%">Weapon: {{weaponname}}</td></tr> <img src="/img/icon_shield.gif" alt="Shield" title="Shield"> Shield: {{shieldname}}<br>
<tr><td><img src="/img/icon_armor.gif" alt="Armor" title="Armor" /></td><td width="100%">Armor: {{armorname}}</td></tr>
<tr><td><img src="/img/icon_shield.gif" alt="Shield" title="Shield" /></td><td width="100%">Shield: {{shieldname}}</td></tr>
</table>
Slot 1: {{slot1name}}<br> Slot 1: {{slot1name}}<br>
Slot 2: {{slot2name}}<br> Slot 2: {{slot2name}}<br>
Slot 3: {{slot3name}} Slot 3: {{slot3name}}
</td></tr> </section>
</table><br>
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells" /></td></tr> <div class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells"></div>
<tr><td>
{{magiclist}} {{magiclist}}
</td></tr> </section>
</table><br> HTML;
THEVERYENDOFYOU;
?>