1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 14:05:07 +03:00
ifhub.club/templates/skin/developer-jquery/block.tagsCountry.tpl
Mzhelskiy Maxim 786127b070 fix tags
2011-08-21 16:41:47 +00:00

10 lines
386 B
Smarty

{if $aCountryList && count($aCountryList)>0}
<div class="block">
<h2>{$aLang.block_country_tags}</h2>
<ul class="cloud">
{foreach from=$aCountryList item=aCountry}
<li><a class="w{$aCountry.size}" rel="tag" href="{router page='people'}country/{$aCountry.name|escape:'url'}/">{$aCountry.name|escape:'html'}</a></li>
{/foreach}
</ul>
</div>
{/if}