diff options
Diffstat (limited to 'create')
-rw-r--r-- | create/skeletons/theme/layouts/partials/menu.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/create/skeletons/theme/layouts/partials/menu.html b/create/skeletons/theme/layouts/partials/menu.html index 8f72130d0..718318096 100644 --- a/create/skeletons/theme/layouts/partials/menu.html +++ b/create/skeletons/theme/layouts/partials/menu.html @@ -27,6 +27,12 @@ Renders a menu for the given menu ID. {{- 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 }} @@ -34,7 +40,7 @@ Renders a menu for the given menu ID. {{- printf " %s=%q" $k $v | safeHTMLAttr }} {{- end }} {{- end -}} - >{{ or (T .Identifier) .Name | safeHTML }}</a> + >{{ $name }}</a> {{- with .Children }} <ul> {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} |