1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/templates/skin/developer/block.stream_comment.tpl
2009-05-08 20:24:43 +00:00

10 lines
577 B
Smarty

<ul class="stream-content">
{foreach from=$aComments item=oComment name="cmt"}
<li>
<a href="{$DIR_WEB_ROOT}/{$ROUTE_PAGE_PROFILE}/{$oComment->getUserLogin()}/" class="stream-author">{$oComment->getUserLogin()}</a>&nbsp;&#8594;
<a href="{$oComment->getBlogUrlFull()}" class="stream-blog">{$oComment->getBlogTitle()|escape:'html'}</a>&nbsp;/
<a href="{$oComment->getTopicUrl()}#comment{$oComment->getId()}" class="stream-comment">{$oComment->getTopicTitle()|escape:'html'}</a>
<span>({$oComment->getTopicCountComment()})</span>
</li>
{/foreach}
</ul>