1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/developer/block.tagsCity.tpl
2010-02-08 02:10:30 +00:00

10 lines
366 B
Smarty

{if $aCityList && count($aCityList)>0}
<div class="block tags">
<h3>{$aLang.block_city_tags}</h3>
<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}