aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/template/menubar_links.tpl
blob: 6bd11003200ff15e314f7704c16ac75363d30413 (plain)
1
2
3
4
5
6
7
8
9
10
11
<h3>{'Links'|@translate}</h3>
<ul data-role="listview">{strip}
		{foreach from=$block->data item=link}
			<li>
				<a href="{$link.URL}" class="external"{if isset($link.new_window)} onclick="window.open(this.href, '{$link.new_window.NAME}','{$link.new_window.FEATURES}'); return false;"{/if}>
				{$link.LABEL}
				</a>
			</li>
		{/foreach}
	{/strip}
</ul>