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

10 lines
360 B
Smarty

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