1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/templates/skin/developer/block.tagsCity.tpl

10 lines
361 B
Smarty
Raw Normal View History

2010-06-05 13:08:13 +03:00
{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:'html'}/" >{$aCity.name|escape:'html'}</a></li>
{/foreach}
</ul>
</div>
{/if}