diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-02-25 13:15:44 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-02-25 13:15:44 +0100 |
| commit | 900bb5e845c3ad44defbd427cae3d44a4a43321f (patch) | |
| tree | df3d96a93771884add571e82336c29fc3d9c7a1c /code/frontpage/layouts/partials/sidebar/manual-default-menu.html | |
| download | greatoffice-900bb5e845c3ad44defbd427cae3d44a4a43321f.tar.xz greatoffice-900bb5e845c3ad44defbd427cae3d44a4a43321f.zip | |
feat: Initial commit
Diffstat (limited to 'code/frontpage/layouts/partials/sidebar/manual-default-menu.html')
| -rw-r--r-- | code/frontpage/layouts/partials/sidebar/manual-default-menu.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/code/frontpage/layouts/partials/sidebar/manual-default-menu.html b/code/frontpage/layouts/partials/sidebar/manual-default-menu.html new file mode 100644 index 0000000..32c4cd4 --- /dev/null +++ b/code/frontpage/layouts/partials/sidebar/manual-default-menu.html @@ -0,0 +1,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="{{ .URL | relURL }}">{{ .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="{{ .URL | relURL }}">{{ .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="{{ .URL | relURL }}">{{ .Name }}</a></li> + {{ end -}} + {{ end -}} + </ul> + {{ end -}} +{{ end -}} |
