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

21 lines
582 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Блок со списоком блогов
* Список блогов
*
* @styles css/blocks.css
*}
<ul class="dotted-list blog-list-compact">
{foreach $aBlogs as $oBlog}
<li class="dotted-list-item">
<span class="dotted-list-item-value">{$oBlog->getRating()}</span>
{strip}
<span class="dotted-list-item-label">
<a href="{$oBlog->getUrlFull()}">{$oBlog->getTitle()|escape:'html'}</a>
{if $oBlog->getType()=='close'}<i title="{$aLang.blog_closed}" class="icon-synio-topic-private"></i>{/if}
</span>
{/strip}
</li>
{/foreach}
</ul>