root/swish_website/lib/menu/nest

Revision 1587, 440 bytes (checked in by whmoseley, 4 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 [%
2
3 DEFAULT pad = '';
4
5 FOREACH item = menu.items;
6     pad;
7
8     INCLUDE menu/text
9       link = {
10         text     = item.name
11         url      = site.topdir _ item.url
12         class    = item.hot ? 'menuselect' : 'menu'
13       };
14
15     IF item.subs;
16         "<br />\n";
17         INCLUDE menu/nest
18           menu = item
19           pad  = pad ? "&nbsp;&nbsp;&nbsp;$pad"
20                      : "&nbsp;-&nbsp;";
21     END;
22
23     "<br />\n";
24 END;
25
26 -%]
Note: See TracBrowser for help on using the browser.