6
|
1 [%
|
|
2 document.css.push(css.global);
|
11
|
3 document.css.push(css.forms);
|
6
|
4 %]
|
11
|
5 <div id="header">
|
|
6 [%
|
|
7 render(
|
|
8 'menu',
|
|
9 items = [
|
|
10 { title = 'HOME', href = app.location },
|
|
11 { title = 'Wiki', href = app.location.wiki },
|
|
12 { title = 'Owncloud', href = app.location.owncloud },
|
|
13 { title = 'BugZilla', href = app.location.bugzilla },
|
|
14 { title = 'Library', href = app.location.library },
|
|
15 { title = 'Mercurial', href = app.location.mercurial }
|
|
16 ],
|
|
17 class = 'menu-bar float-left',
|
|
18 id = 'main-menu'
|
|
19 )%]
|
|
20 [%
|
14
|
21 render('usermenu');
|
11
|
22 %]
|
|
23 <div style="clear: both"></div>
|
|
24 </div>
|
12
|
25
|
|
26 [% IF document.menu.page.size;
|
|
27 render('menu', items = document.menu.page, class='menu-bar', id='page-menu');
|
|
28 END %]
|
|
29 <div id="page-content">
|
|
30 $content
|
|
31 </div> |