mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-04-16 19:35:39 +00:00
21 lines
652 B
HTML
21 lines
652 B
HTML
<div class="tree-nav invisible">
|
|
<ul>
|
|
{{ template "section-tree-nav" ($.Scratch.Get "secondLevel") }}
|
|
</ul>
|
|
</div>
|
|
{{ define "section-tree-nav" }}
|
|
{{ range .Sections}}
|
|
<li class="tree-nav-item"><a href="{{ .RelPermalink}}">{{ .Title }}</a>
|
|
{{if gt (len .Sections) 0}}
|
|
<i class="material-icons pull-right expand-toggle">add_box</i>
|
|
<ul class="tree-nav-sublist hide">
|
|
{{ range .Pages }}
|
|
<li class="tree-nav-item-child"><a href="{{ .RelPermalink}}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
{{ template "section-tree-nav" . }}
|
|
</ul>
|
|
{{end}}
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|