您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 -}}