aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/menubar_links.tpl
blob: 9f521f6b1a3ca0b43d7e08bf7b93282680664ab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<dt>{'Links'|@translate}</dt>
<dd>
	<ul>
		{foreach from=$block->data item=link}
			<li>
				<a href="{$link.URL}"
					{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}
	</ul>
</dd>