Update release name.
[AGL/documentation.git] / theme / mkdocs_windmill / nav-pane.html
1 {# Side-pane with table of contents #}
2 <nav class="wm-toc-pane">
3   {# Optional link to the repository #}
4   {%- block repo %}
5     {%- if config.repo_url %}
6     <ul class="wm-toctree wm-toc-repo">
7       <li class="wm-toc-li wm-toc-lev1">
8       <a class="wm-article-link wm-toc-text" href="{{ config.repo_url }}">
9         {% include 'repo-icon.html' %}
10         {{ config.repo_name }}
11       </a>
12       </li>
13     </ul>
14     {%- endif %}
15   {%- endblock %}
16
17   {%- block site_nav %}
18   <ul class="wm-toctree">
19     {%- set navlevel = 1 %}
20     {%- for nav_item in nav %}
21         {% include 'nav-item.html' %}
22     {%- endfor %}
23   </ul>
24   {%- endblock %}
25 </nav>
26