File indexing completed on 2024-09-15 03:55:04

0001 <div class="bs-sidebar hidden-print affix well" role="complementary">
0002     <ul class="nav bs-sidenav">
0003         {% with toc = page.meta.toc or page.toc %}
0004             {%- for toc_item in toc %}
0005             <li class="first-level {% if toc_item.active %}active{% endif %}"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
0006                 {%- for toc_item in toc_item.children %}
0007                 <li class="second-level"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
0008                     {% for toc_item in toc_item.children %}
0009                     <li class="third-level"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
0010                     {%- endfor %}
0011                 {%- endfor %}
0012             {%- endfor %}
0013         {% endwith %}
0014     </ul>
0015 </div>