diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-15 03:56:47 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-15 03:56:47 +0300 |
commit | a9168e6f04f766f7d88bc1b24aaa81336098b2fc (patch) | |
tree | a4db599140020cfb14803aa4d28b17d52e637a72 /layouts/partials/hmenu.html | |
parent | 3b040f1503d90a309f41063d8f760a3e312ab351 (diff) |
Auto-commit 2024-12-15
Diffstat (limited to 'layouts/partials/hmenu.html')
-rw-r--r-- | layouts/partials/hmenu.html | 47 |
1 files changed, 2 insertions, 45 deletions
diff --git a/layouts/partials/hmenu.html b/layouts/partials/hmenu.html index 7183180..89e70db 100644 --- a/layouts/partials/hmenu.html +++ b/layouts/partials/hmenu.html @@ -1,51 +1,8 @@ -{{- /* -Renders a menu for the given menu ID. - -@context {page} page The current page. -@context {string} menuID The menu ID. - -@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }} -*/}} - {{- $page := .page }} {{- $menuID := .menuID }} {{- with index site.Menus $menuID }} - <nav> - <ul> - {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} + <ul class="navbar-nav me-auto mb-2 mb-lg-0"> + {{- partial "walk.html" (dict "page" $page "menuEntries" .) }} </ul> - </nav> -{{- end }} - -{{- define "partials/inline/menu/walk.html" }} - {{- $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> - <a - {{- range $k, $v := $attrs }} - {{- with $v }} - {{- printf " %s=%q" $k $v | safeHTMLAttr }} - {{- end }} - {{- end -}} - >{{ $name }}</a> - {{- with .Children }} - <ul> - {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} - </ul> - {{- end }} - </li> - {{- end }} {{- end }} |