-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidenav.tpl.htm
More file actions
24 lines (24 loc) · 836 Bytes
/
sidenav.tpl.htm
File metadata and controls
24 lines (24 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<ul id="submenu">
<tmpl_loop name="nav_left">
<li class="title">
<tmpl_if name="startpage">
<a href="#" onClick="loadContent('<tmpl_var name='startpage'>')">
</tmpl_if>
<tmpl_var name="title">
<tmpl_if name="startpage">
</a>
</tmpl_if>
</li>
<tmpl_loop name="items">
<li <tmpl_if name="html_id"> id='<tmpl_var name="html_id">' </tmpl_if>>
<tmpl_if name="link">
<a href="#" onClick="loadContent('<tmpl_var name='link'>')">
</tmpl_if>
<tmpl_var name="title">
<tmpl_if name="link">
</a>
</tmpl_if>
</li>
</tmpl_loop>
</tmpl_loop>
</ul>