1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/application/frontend/skin/developer/user_item.tpl

10 lines
515 B
Smarty
Raw Normal View History

{**
* Блок с аватаркой и именем пользователя
*
* @styles css/common.css
*}
<div class="user-item {if $sUserItemStyle}user-item-{$sUserItemStyle}{/if}">
<a href="{$oUser->getUserWebPath()}" class="user-item-avatar-link"><img src="{$oUser->getProfileAvatarPath($iUserItemAvatarSize|default:24)}" alt="{$oUser->getLogin()}" class="user-item-avatar" /></a>
<a {* TODO: rel="author" *} href="{$oUser->getUserWebPath()}" class="user-item-name">{$oUser->getDisplayName()}</a>
</div>