-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidenav.tpl.htm
More file actions
28 lines (28 loc) · 1.03 KB
/
sidenav.tpl.htm
File metadata and controls
28 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<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">
<tmpl_if name="target" op="==" value="_blank">
<a href="<tmpl_var name='link'>" target="_blank">
<tmpl_else>
<a href="#" onclick="loadContent('<tmpl_var name='link'>')">
</tmpl_if>
</tmpl_if>
<tmpl_var name="title">
<tmpl_if name="link">
</a>
</tmpl_if>
</li>
</tmpl_loop>
</tmpl_loop>
</ul>