diff options
| author | 2023-10-07 06:48:07 +0800 | |
|---|---|---|
| committer | 2023-10-07 06:48:07 +0800 | |
| commit | 991fd7a6d67ee017c57beaaa21fc31c4bee7944d (patch) | |
| tree | e895202203fcaa50b0052f60ef6fc7d6d2928cf9 /material/templates/partials/toc-item.html | |
| parent | d62900046bb6f754a8e6e7e670a66a90134055d9 (diff) | |
| download | infini-991fd7a6d67ee017c57beaaa21fc31c4bee7944d.tar.gz infini-991fd7a6d67ee017c57beaaa21fc31c4bee7944d.zip | |
feat(version): versions
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> |
