1
0
mirror of https://github.com/taigrr/wtf synced 2026-03-20 14:52:18 -07:00
Files
wtf/_site/themes/docdock/layouts/partials/breadcrumb.html
2018-08-15 13:25:28 -07:00

8 lines
252 B
HTML

{{define "breadcrumb"}}
{{ if .page.Parent}}
{{$value := (printf "<a href='%s'>%s</a> > %s" .page.Parent.URL .page.Parent.Title .value)}}
{{ template "breadcrumb" dict "page" .page.Parent "value" $value }}
{{else}}
{{.value|safeHTML}}
{{end}}
{{end}}