1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/templates/skin/developer-jquery/block.tags.tpl
2012-03-22 22:18:34 +07:00

18 lines
486 B
Smarty

<section class="block">
<header class="block-header">
<h3>{$aLang.block_tags}</h3>
</header>
<div class="block-content">
{if $aTags}
<ul class="tag-cloud">
{foreach from=$aTags item=oTag}
<li><a class="tag-size-{$oTag->getSize()}" href="{router page='tag'}{$oTag->getText()|escape:'url'}/">{$oTag->getText()|escape:'html'}</a></li>
{/foreach}
</ul>
{else}
<div class="notice-empty">{$aLang.block_empty_no_tags}</div>
{/if}
</div>
</section>