www/layouts/partials/breadcrumbs.html

13 lines
417 B
HTML

<p>
{{ if ne .Parent nil }}
{{ if ne .Parent.Parent nil }}
{{ if ne .Parent.Parent.Parent nil }}
<a href="{{ .Parent.Parent.Parent.Permalink }}">{{ .Parent.Parent.Parent.Title }}</a> &gt;
{{ end }}
<a href="{{ .Parent.Parent.Permalink }}">{{ .Parent.Parent.Title }}</a> &gt;
{{ end }}
<a href="{{ .Parent.Permalink }}">{{ .Parent.Title }}</a> &gt;
{{ end }}
<strong>{{ .Title }}</strong><br/>
{{ .Description }}
</p>