mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-21 20:30:39 +00:00
use title shortcode in breadcrumb nav
This commit is contained in:
parent
3c594349fb
commit
b45afba0b9
@ -7,9 +7,10 @@
|
||||
{{ end }}
|
||||
|
||||
{{ define "breadcrumb" }}
|
||||
{{$parent := .page.Parent }}
|
||||
{{ $parent := .page.Parent }}
|
||||
{{ if $parent }}
|
||||
{{ $value := (printf "<a href='%s'>%s</a> / %s" $parent.RelPermalink $parent.Title .value) }}
|
||||
{{ $name := (partial "title" $parent) }}
|
||||
{{ $value := (printf "<a href='%s'>%s</a> / %s" $parent.RelPermalink $name .value) }}
|
||||
{{ template "breadcrumb" dict "page" $parent "value" $value }}
|
||||
{{ else }}
|
||||
{{ .value | safeHTML }}
|
||||
|
Loading…
Reference in New Issue
Block a user