12 lines
519 B
Smarty
12 lines
519 B
Smarty
|
{foreach from=$blockLinks item=blockLink}
|
||
|
<div class="block-links md3 sm3 xs4 xxs12 block ">
|
||
|
<span class="title">{if $blockLink.url}<a href="{$blockLink.url}">{$blockLink.title}</a>{else}{$blockLink.title}{/if}</span>
|
||
|
{if !empty($blockLink.children)}
|
||
|
<ul>
|
||
|
{foreach from=$blockLink.children item=link}
|
||
|
<li><a href="{$link.url|escape}"{if $link.external} onclick="window.open(this.href);return false;"{/if}>{$link.title}</a></li>
|
||
|
{/foreach}
|
||
|
</ul>
|
||
|
{/if}
|
||
|
</div>
|
||
|
{/foreach}
|