source: extensions/AMenuManager/menu_templates/menubar_links.tpl @ 16006

Last change on this file since 16006 was 16006, checked in by grum, 12 years ago

feature:2642- compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 508 bytes
Line 
1<!-- links menu bar -->
2{if $block->get_title() !="" }
3  <dt>{$block->get_title()}</dt>
4{/if}
5<dd>
6  <ul {if $block->data.icons=='y'} class="amm-MenuBar-links-icons"{else}class="amm-MenuBar-links"{/if}>
7    {foreach from=$block->data.LINKS item=link}
8      <li>
9        {if $block->data.icons=='y'}<img src='{$link.icon}' style="position:relative;top:3px;"/>{/if}
10        <a href="{$link.url}"
11          {if $link.mode == 0} target = '_blank' {/if}>{$link.label}</a>
12      </li>
13    {/foreach}
14  </ul>
15</dd>
Note: See TracBrowser for help on using the repository browser.