version bump

master
sephger 2024-06-11 13:09:31 +02:00
parent 1d7e0bfe75
commit 4b9a73238c
1 changed files with 3 additions and 3 deletions

View File

@ -9,11 +9,11 @@ use WoWPress\Frontend\Icon;
<?php <?php
foreach($this->getList() as $bday): foreach($this->getList() as $bday):
?> ?>
<div class="flex flex-row items-center gap-1 <?=$bday['party']?"text-alliance":""?>"> <div class="flex bg-opacity-20 odd:bg-opacity-10 p-2 flex-row items-center gap-1 <?=$bday['party']?"text-alliance bg-alliance":"bg-blue-500"?>">
<span><?=$bday['user']?></span> <span class="flex-grow"><?=$bday['user']?></span>
<?=$bday['party']?Icon::get('o-cake','1.5em'):'<div class="w-[1.5em] aspect-1"></div>'?>
<span><?=$bday['next']?></span> <span><?=$bday['next']?></span>
<span>(<?=$bday['age']?>)</span> <span>(<?=$bday['age']?>)</span>
<?=$bday['party']?Icon::get('o-cake'):"";?>
</div> </div>
<?php <?php
endforeach; endforeach;