Added proper support for font size and color
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / authorSidebarBox.tpl
1 <div class="box">
2 <div class="boxContent box96">
3 {@$userProfile->getAvatar()->getImageTag(96)}
4
5 <div>
6 <div class="containerHeadline">
7 <h3>{if $userProfile->userID}<a href="{link controller='User' object=$userProfile}{/link}" rel="author">{$userProfile->username}</a>{else}{$userProfile->username}{/if}</h3>
8 {if MODULE_USER_RANK}
9 {if $userProfile->getUserTitle()}
10 <p><span class="badge userTitleBadge{if $userProfile->getRank() && $userProfile->getRank()->cssClassName} {@$userProfile->getRank()->cssClassName}{/if}">{$userProfile->getUserTitle()}</span></p>
11 {/if}
12 {if $userProfile->getRank() && $userProfile->getRank()->rankImage}
13 <p><span class="userRankImage">{@$userProfile->getRank()->getImage()}</span></p>
14 {/if}
15 {/if}
16 </div>
17
18 {if $userProfile->userID}
19 <dl class="plain dataList containerContent small">
20 {include file='userInformationStatistics' user=$userProfile}
21 </dl>
22 {/if}
23 </div>
24 </div>
25 </div>