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

16 lines
451 B
Smarty

{if $aCityList && count($aCityList)>0}
<section class="block">
<header class="block-header">
<h3>{$aLang.block_city_tags}</h3>
</header>
<div class="block-content">
<ul class="tag-cloud">
{foreach from=$aCityList item=oCity}
<li><a class="tag-size-{$oCity->getSize()}" href="{router page='people'}city/{$oCity->getId()}/">{$oCity->getName()|escape:'html'}</a></li>
{/foreach}
</ul>
</div>
</section>
{/if}