toc.html 598 B

12345678910111213
  1. <div id="toc_table" class="bs-sidebar hidden-print" role="complementary">
  2. {% if current_page.title != '**HIDDEN**' %}
  3. <h2><a href="#">{{ current_page.title }} <b class="caret"></b></a></h2>
  4. {% endif %}
  5. <h3>TABLE OF CONTENTS</h3>
  6. <ul id="toc_navigation" class="nav bs-sidenav">
  7. {% for toc_item in toc %}
  8. {% for toc_item in toc_item.children %}
  9. <li><a href="{{ toc_item.url }}"><span class="active_icon glyphicon glyphicon-eye-open"></span><span class="passive_icon glyphicon glyphicon-unchecked"></span> {{ toc_item.title }}</a></li>
  10. {% endfor %}
  11. {% endfor %}
  12. </ul>
  13. </div>