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

Last change on this file since 5421 was 3681, checked in by grum, 15 years ago

Add plugin Advanced Menu Manager 2.1.0

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