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

10 lines
514 B
Smarty

<ul class="stream-content">
{foreach from=$oTopics item=oTopic name="cmt"}
<li>
<a href="{$DIR_WEB_ROOT}/{$ROUTE_PAGE_PROFILE}/{$oTopic->getUserLogin()}/" class="stream-author">{$oTopic->getUserLogin()}</a>&nbsp;&#8594;
<a href="{$oTopic->getBlogUrlFull()}" class="stream-blog">{$oTopic->getBlogTitle()|escape:'html'}</a>&nbsp;/
<a href="{$oTopic->getUrl()}" class="stream-topic">{$oTopic->getTitle()|escape:'html'}</a>
<span>({$oTopic->getCountComment()})</span>
</li>
{/foreach}
</ul>