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