-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnav.html
More file actions
15 lines (15 loc) · 803 Bytes
/
nav.html
File metadata and controls
15 lines (15 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% for nav_item in nav %}
<li class="toctree-l1{% if nav_item.active %} current{% endif %}">
<a class="reference internal{% if nav_item.active %} current{% endif %}"{% if nav_item.active %} state="open"{% endif %} href="{{ nav_item.url }}">{{ nav_item.title }}</a>
{% if nav_item.children %}
<ul style="display: none;"{% if nav_item.active %} class="current"{% endif %}>
{% for child in nav_item.children %}
<li class="toctree-l2{% if child.active %} current{% endif %}">
<a class="reference internal{% if nav_item.active %} current{% endif %}" href="{{ child.url }}">{{ child.title }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
<div class="clearbox"></div>