aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/src/templates/partials/toc-item.html
blob: c8397272972f635a5a0332221e38f8e83f2997ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{#-
  This file was automatically generated - do not edit
-#}
<li class="md-nav__item">
  <a href="{{ toc_item.url }}" class="md-nav__link">
    {{ toc_item.title }}
  </a>
  {% if toc_item.children %}
    <nav class="md-nav" aria-label="{{ toc_item.title | striptags }}">
      <ul class="md-nav__list">
        {% for toc_item in toc_item.children %}
          {% include "partials/toc-item.html" %}
        {% endfor %}
      </ul>
    </nav>
  {% endif %}
</li>