20 lines
No EOL
491 B
HTML
20 lines
No EOL
491 B
HTML
<div id="breadcrumbs">
|
|
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
|
|
</div>
|
|
{{ define "breadcrumbnav" }}
|
|
{{ if .p1.Parent }}
|
|
{{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }}
|
|
{{ else if not .p1.IsHome }}
|
|
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }}
|
|
{{ end }}
|
|
{{ if .p1.IsHome }}
|
|
<a href="{{ .p1.Permalink }}">
|
|
<i class="fas fa-home"></i>
|
|
</a>
|
|
{{ else }}
|
|
/
|
|
<a href="{{ .p1.Permalink }}">
|
|
{{ .p1.Title }}
|
|
</a>
|
|
{{ end }}
|
|
{{ end }} |