-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathoffcanvas.html
More file actions
18 lines (18 loc) · 826 Bytes
/
Copy pathoffcanvas.html
File metadata and controls
18 lines (18 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<aside class="right-off-canvas-menu">
<ul>
{% 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 %}" id="{{ child.title }}" href="{{ child.url }}">{{ child.title }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</aside>