aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/test_menu/menu_templates/menubar_links.tpl
blob: 87862f1d6d92bb508f7b8c9787b40804796a578a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!-- links menu bar -->

<dt>{$section.NAME|@translate}</dt>
<dd>
  <ul>
    {foreach from=$section.ITEMS item=link}
      <li>
        <a href="{$link.URL}"
          {if isset($link.new_window) }onclick="window.open(this.href, '{$link.new_window.NAME|@escape:'javascript'}','{$link.new_window.FEATURES|@escape:'javascript'}'); return false;"{/if}
        >
        {$link.LABEL}
        </a>
      </li>
    {/foreach}
  </ul>
</dd>