WowPress-Tailwind/theme/template-parts/widgets/birthdays.php

21 lines
703 B
PHP
Raw Permalink Normal View History

2024-06-11 11:06:25 +02:00
<?php
use WoWPress\Frontend\Icon;
?>
<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>
<?php
foreach($this->getList() as $bday):
?>
2024-06-11 13:09:31 +02:00
<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 class="flex-grow"><?=$bday['user']?></span>
<?=$bday['party']?Icon::get('o-cake','1.5em'):'<div class="w-[1.5em] aspect-1"></div>'?>
2024-06-11 11:06:25 +02:00
<span><?=$bday['next']?></span>
<span>(<?=$bday['age']?>)</span>
</div>
<?php
endforeach;
?>
</div>