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/synio/blocks/block.tagsCountry.tpl
2012-04-23 17:53:41 +07:00

16 lines
478 B
Smarty

{if $aCountryList && count($aCountryList)>0}
<section class="block">
<header class="block-header">
<h3>{$aLang.block_country_tags}</h3>
</header>
<div class="block-content">
<ul class="tag-cloud">
{foreach from=$aCountryList item=oCountry}
<li><a class="tag-size-{$oCountry->getSize()}" href="{router page='people'}country/{$oCountry->getId()}/">{$oCountry->getName()|escape:'html'}</a></li>
{/foreach}
</ul>
</div>
</section>
{/if}