nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / index.html
1 ---
2 layout: frontpage
3 js: documentation.js
4 css: documentation.css
5 ---
6
7 <div class="row">
8     <div class="col-md-3">
9         <div class="bs-sidebar hidden-print" id="menu" role="complementary">
10             <a href="#jqtree"><h2>jqTree</h2></a>
11             <ul class="nav bs-sidenav">
12                 {% assign level = 0 %}
13
14                 {% for entry in site.entries %}
15                     {% if entry.section %}
16                         {% if level == 1 %}
17                                 </ul>
18                             </li>
19                         {% endif %}
20                         <li>
21                             <a href="#{{ entry.name }}">{{ entry.title }}</a>
22                             <ul class="nav">
23                         {% assign level = 1 %}
24                     {% else %}
25                         <li><a href="#{{ entry.name }}">{{ entry.title }}</a></li>
26                     {% endif %}
27                 {% endfor %}
28
29                 {% if level == 1 %}
30                         </ul>
31                     </li>
32                 {% endif %}
33             </ul>
34         </div>
35     </div>
36     <div class="col-md-9" id="main">
37         {% for entry in site.entries %}
38             {% if entry.hide_title %}
39                 <div id="{{ entry.name }}"></div>
40             {% elsif entry.section %}
41                 <h3 id="{{ entry.name }}">{{ entry.title }}</h3>
42             {% else %}
43                 <h4 id="{{ entry.name }}">{{ entry.title }}</h4>
44             {% endif %}
45             {{ entry.output }}
46         {% endfor %}
47     </div>
48 </div>