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/block.tagsCountry.tpl

10 lines
393 B
Smarty
Raw Normal View History

2009-05-08 23:24:43 +03:00
{if $aCountryList && count($aCountryList)>0}
<div class="block tags">
<h3>{$aLang.block_country_tags}</h3>
<ul class="cloud">
{foreach from=$aCountryList item=aCountry}
2010-02-08 04:10:30 +02:00
<li><a class="w{$aCountry.size}" rel="tag" href="{router page='people'}country/{$aCountry.name|escape:'html'}/">{$aCountry.name|escape:'html'}</a></li>
2009-05-08 23:24:43 +03:00
{/foreach}
</ul>
</div>
{/if}