diff options
-rw-r--r-- | layouts/partials/docs/menu-bundle.html | 6 | ||||
-rw-r--r-- | layouts/partials/docs/shared.html | 15 |
2 files changed, 16 insertions, 5 deletions
diff --git a/layouts/partials/docs/menu-bundle.html b/layouts/partials/docs/menu-bundle.html index 6cd0016..dbece6c 100644 --- a/layouts/partials/docs/menu-bundle.html +++ b/layouts/partials/docs/menu-bundle.html @@ -1,8 +1,4 @@ -<style> -nav ul a[href$="{{- .RelPermalink -}}"] { - color: {{ default "#004ed0" .Site.Params.BookMenuBundleActiveLinkColor }}; -} -</style> +{{- template "hrefhack" . -}} {{ with .Site.GetPage .Site.Params.BookMenuBundle }} {{- .Content -}} {{ end }}
\ No newline at end of file diff --git a/layouts/partials/docs/shared.html b/layouts/partials/docs/shared.html index 2027007..8354e6a 100644 --- a/layouts/partials/docs/shared.html +++ b/layouts/partials/docs/shared.html @@ -9,3 +9,18 @@ {{- default $title .Title -}} {{- end -}} {{ end }} + +{{ define "hrefhack" }} + {{ $attrEq := "$=" }} + {{ $attrVal := .RelPermalink }} + {{ if eq .RelPermalink "/" }} + {{ $attrEq = "=" }} + {{ $attrVal = .Permalink }} + {{ end }} + + <style> + nav ul a[href{{ $attrEq }}"{{ $attrVal }}"] { + color: {{ default "#004ed0" .Site.Params.BookMenuBundleActiveLinkColor }}; + } + </style> +{{ end }}
\ No newline at end of file |