portable-devtools / micromamba_root /Lib /site-packages /material /templates /partials /toc-item.html
| {#- | |
| This file was automatically generated - do not edit | |
| -#} | |
| <li class="md-nav__item"> | |
| <a href="{{ toc_item.url }}" class="md-nav__link"> | |
| <span class="md-ellipsis"> | |
| {% if toc_item.typeset %} | |
| <span class="md-typeset"> | |
| {{ toc_item.typeset.title }} | |
| </span> | |
| {% else %} | |
| {{ toc_item.title }} | |
| {% endif %} | |
| </span> | |
| </a> | |
| {% if toc_item.children %} | |
| <nav class="md-nav" aria-label="{{ toc_item.title | striptags | e }}"> | |
| <ul class="md-nav__list"> | |
| {% for toc_item in toc_item.children %} | |
| {% include "partials/toc-item.html" %} | |
| {% endfor %} | |
| </ul> | |
| </nav> | |
| {% endif %} | |
| </li> | |