mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-07 02:11:26 +02:00
b352f8a4dc
- 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
16 lines
328 B
Smarty
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>
|
|
|