Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manual-default-menu.html « sidebar « partials « layouts - github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2434978c21bf19c43a00f2bf7c22b3a7fe7bfccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!-- Manual default section menu -->
{{ $currentPage := . -}}
{{ $section := $currentPage.Section -}}
{{ range (index .Site.Menus $section) -}}
  <h3 class="h6 text-uppercase mb-2">{{ .Name }}</h3>
  {{ if .HasChildren -}}
    <ul class="list-unstyled">
      {{ range .Children -}}
        {{ if .HasChildren -}}
          <h4 class="h6 text-uppercase ms-3 mt-3 mb-2">{{ .Name }}</h4>
          {{ if .HasChildren -}}
            <ul class="list-unstyled ms-3">
              {{ range .Children -}}
                {{ if .HasChildren -}}
                  <h5 class="h6 text-uppercase mt-2 mb-2">{{ .Name }}</h5>
                  {{ if .HasChildren -}}
                    <ul class="list-unstyled ms-3">
                      {{ range .Children -}}
                        {{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
                        {{- $active = or $active (eq $currentPage.Section .Identifier) -}}
                        <li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Name }}</a></li>
                      {{ end -}}
                    </ul>
                  {{ end -}}
                {{ else -}}
                  {{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
                  {{- $active = or $active (eq $currentPage.Section .Identifier) -}}
                  <li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Name }}</a></li>
                {{ end -}}
              {{ end -}}
            </ul>
          {{ end -}}
        {{ else -}}
          {{- $active := or ($currentPage.IsMenuCurrent $section .) ($currentPage.HasMenuCurrent $section .) -}}
          {{- $active = or $active (eq $currentPage.Section .Identifier) -}}
          <li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .Permalink }}">{{ .Name }}</a></li>
        {{ end -}}
      {{ end -}}
    </ul>
  {{ end -}}
{{ end -}}