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

Last change on this file since 12523 was 8962, checked in by grum, 13 years ago

release 3.0.0
fix bug:1716, bug:2128, bug:1296, bug:2052, bug:1910, bug:1723, bug:1709, bug:1680, bug:1477, bug:2129
rewrite plugin core, implement ajax interface, optimize JS

  • Property svn:executable set to *
File size: 486 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'}style="padding-left:4px;list-style:none;"{/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.