aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/walk.html
blob: e115d6f5c591f8e635d01121690a03e7f0329e74 (plain) (blame)
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
{{- $page := .page }}
{{- range .menuEntries }}
  {{- $attrs := dict "href" .URL }}
  {{- if $page.IsMenuCurrent .Menu . }}
    {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }}
  {{- else if $page.HasMenuCurrent .Menu .}}
    {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }}
  {{- end }}
  {{- $name := .Name }}
  {{- with .Identifier }}
    {{- with T . }}
      {{- $name = . }}
    {{- end }}
  {{- end }}
  <li class="nav-item {{if .Children}}dropdown{{end}}">
    <a 
      {{if .Children}}
        class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"
      {{ else }}
        class="nav-link" href="{{.URL}}"
      {{ end }}
    >{{ $name }}</a>
    {{- with .Children }}
      <ul class="dropdown-menu">
        {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
      </ul>
    {{- end }}
  </li>
{{- end }}