You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

shared.html 818B

12345678910111213141516171819202122232425262728
  1. {{/*These templates contains some more complex logic and shared between partials*/}}
  2. {{- define "title" -}}
  3. {{- if .File -}}
  4. {{- if .Pages -}}
  5. {{ $sections := split (trim .File.Dir "/") "/" }}
  6. {{ $title := index ($sections | last 1) 0 | humanize | title }}
  7. {{- default $title .Title -}}
  8. {{- else -}}
  9. {{ $title := .File.BaseFileName | humanize | title }}
  10. {{- default $title .Title -}}
  11. {{- end -}}
  12. {{- end -}}
  13. {{- end -}}
  14. {{- define "hrefhack" -}}
  15. {{ $attrEq := "$=" }}
  16. {{ $attrVal := .RelPermalink }}
  17. {{ if eq .RelPermalink "/" }}
  18. {{ $attrEq = "=" }}
  19. {{ $attrVal = .Permalink }}
  20. {{ end }}
  21. <style>
  22. nav ul a[href{{ $attrEq }}"{{ $attrVal }}"] {
  23. color: {{ default "#004ed0" .Site.Params.BookMenuBundleActiveLinkColor }};
  24. }
  25. </style>
  26. {{- end -}}