toc.html 401 B

12345678910
  1. {% for toc_item in page.toc %}
  2. <li class="toctree-l{{ navlevel + 1 }}"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
  3. {% if toc_item.children %}
  4. <ul>
  5. {% for toc_item in toc_item.children %}
  6. <li><a class="toctree-l{{ navlevel + 2 }}" href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
  7. {% endfor %}
  8. </ul>
  9. {% endif %}
  10. {% endfor %}