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

14 lines
494 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">
<h1>Города</h1>
<ul class="cloud">
{foreach from=$aCityList item=aCity}
<li><a class="w{$aCity.size}" rel="tag" href="#" onclick="return false;">{$aCity.name}</a></li>
{/foreach}
</ul>
</div></div>
<div class="bl"><div class="br"></div></div>
</div>
{/if}