Files
Piwigo/template/yoga/menubar_links.tpl
T
rvelices b352f8a4dc merge -c2831 from branch 2.0 to trunk
- remove some unnecessary modifiers from template - it should be somehow faster (arguably though)

git-svn-id: http://piwigo.org/svn/trunk@2832 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-11-06 01:19:55 +00:00

16 lines
328 B
Smarty

<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>