1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/templates/skin/developer/blocks/block.tagsCountry.tpl

16 lines
488 B
Smarty
Raw Normal View History

2011-04-01 10:49:36 +03:00
{if $aCountryList && count($aCountryList)>0}
<section class="block">
<header class="block-header">
<h3>{$aLang.block_country_tags}</h3>
</header>
<div class="block-content">
2012-07-05 20:04:11 +03:00
<ul class="tag-cloud word-wrap">
{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>
2011-04-01 10:49:36 +03:00
{/if}