Added proper support for font size and color
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / boxTodaysFollowingBirthdays.tpl
1 <ul class="sidebarBoxList">
2 {foreach from=$birthdayUserProfiles item=birthdayUserProfile}
3 <li class="box32">
4 <a href="{link controller='User' object=$birthdayUserProfile}{/link}">{@$birthdayUserProfile->getAvatar()->getImageTag(32)}</a>
5
6 <div class="sidebarBoxHeadline">
7 <h3><a href="{link controller='User' object=$birthdayUserProfile}{/link}" class="userLink" data-user-id="{@$birthdayUserProfile->userID}">{$birthdayUserProfile->username}</a></h3>
8 <small>{$birthdayUserProfile->getBirthday()}</small>
9 </div>
10 </li>
11 {/foreach}
12 </ul>