diff options
Diffstat (limited to 'material/templates/partials/toc-item.html')
| -rw-r--r-- | material/templates/partials/toc-item.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/material/templates/partials/toc-item.html b/material/templates/partials/toc-item.html new file mode 100644 index 00000000..c8397272 --- /dev/null +++ b/material/templates/partials/toc-item.html @@ -0,0 +1,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> |
