1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/new/block.stream_topic.tpl

15 lines
866 B
Smarty
Raw Normal View History

2009-01-10 21:11:09 +02:00
<ul class="stream-content">
{foreach from=$oTopics item=oTopic name="cmt"}
2009-06-27 18:05:17 +03:00
{assign var="oUser" value=$oTopic->getUser()}
{assign var="oBlog" value=$oTopic->getBlog()}
2009-03-01 19:01:00 +02:00
<li {if $smarty.foreach.cmt.iteration % 2 == 1}class="even"{/if}>
2009-06-27 18:05:17 +03:00
<a href="{$oUser->getUserWebPath()}" class="stream-author">{$oUser->getLogin()}</a>&nbsp;&#8594;
<span class="stream-topic-icon"></span><a href="{$oTopic->getUrl()}" class="stream-topic">{$oTopic->getTitle()|escape:'html'}</a>
2009-06-27 18:05:17 +03:00
<span>{$oTopic->getCountComment()}</span> в <a href="{$oBlog->getUrlFull()}" class="stream-blog">{$oBlog->getTitle()|escape:'html'}</a>
2009-03-01 19:01:00 +02:00
</li>
2009-01-10 21:11:09 +02:00
{/foreach}
2009-12-01 18:43:50 +02:00
</ul>
<div class="right"><a href="{router page='new'}">{$aLang.block_stream_topics_all}</a> | <a href="{router page='rss'}new/">RSS</a></div>