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

14 lines
550 B
Smarty
Raw Normal View History

2009-01-18 22:38:45 +02:00
{if $aCityList && count($aCityList)>0}
<div class="block white tags">
<div class="tl"><div class="tr"></div></div>
<div class="cl"><div class="cr">
2009-03-30 18:38:56 +03:00
<h1>{$aLang.block_city_tags}</h1>
2009-01-18 22:38:45 +02:00
<ul class="cloud">
{foreach from=$aCityList item=aCity}
2011-08-21 19:41:47 +03:00
<li><a class="w{$aCity.size}" rel="tag" href="{router page='people'}city/{$aCity.name|escape:'url'}/" >{$aCity.name|escape:'html'}</a></li>
2009-01-18 22:38:45 +02:00
{/foreach}
</ul>
</div></div>
<div class="bl"><div class="br"></div></div>
</div>
{/if}