Merge branch '5.3'
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / userProfileLikeItem.tpl
1 {foreach from=$likeList item=like}
2 <li>
3 <div class="box48">
4 {user object=$like->getUserProfile() type='avatar48' ariaHidden='true' tabindex='-1'}
5
6 <div>
7 <div class="containerHeadline">
8 <h3>
9 {user object=$like->getUserProfile()}
10 <small class="separatorLeft">{@$like->time|time}</small>
11 </h3>
12 <div>{@$like->getTitle()}</div>
13 <small class="containerContentType">{$like->getObjectTypeDescription()}</small>
14 </div>
15
16 <div class="containerContent">{@$like->getDescription()}</div>
17 </div>
18 </div>
19 </li>
20 {/foreach}