20 lines
591 B
PHP
20 lines
591 B
PHP
|
<?php
|
||
|
|
||
|
?>
|
||
|
|
||
|
<div class="bg-glass shadow p-auto order-last flex flex-col gap-2">
|
||
|
<h3 class="text-xl font-bold text-center"><?= $this->title ?></h3>
|
||
|
<h4 class="text-lg font-bold text-center"><?=$instance['raid_name']?></h4>
|
||
|
<?php
|
||
|
foreach ($instance['bosses'] as $boss) {
|
||
|
if (!empty($boss['name'])) :
|
||
|
?>
|
||
|
<div class="flex flex-row gap-2 justify-around">
|
||
|
<div><?= $boss['name'] ?></div>
|
||
|
<div><?= $boss['date']?format_date($boss['date']):"Nicht besiegt" ?></div>
|
||
|
</div>
|
||
|
<?php
|
||
|
endif;
|
||
|
}
|
||
|
?>
|
||
|
</div>
|