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/developer/block.blogs_top.tpl

9 lines
373 B
Smarty
Raw Normal View History

2010-06-05 13:08:13 +03:00
<ul class="list">
{foreach from=$aBlogs item=oBlog}
<li>
<a href="{router page='blog'}{$oBlog->getUrl()}/">{$oBlog->getTitle()|escape:'html'}</a>
2011-08-21 18:58:52 +03:00
{if $oBlog->getType()=='close'}<img src="{cfg name='path.static.skin'}/images/lock.png" alt="[x]" title="{$aLang.blog_closed}" />{/if}
2010-06-05 13:08:13 +03:00
<span class="rating">{$oBlog->getRating()}</span>
</li>
{/foreach}
</ul>