summaryrefslogtreecommitdiff
path: root/layouts/partials/breadcrumbs.html
blob: 30a4df1fe421eaa3300ce68590544b43e39bb142 (plain)
1
2
3
4
5
6
7
8
9
{{ if .Site.Params.breadcrumbs }}
<div class="breadcrumbs">
    {{ range .Ancestors.Reverse }}
    <a href="{{ .RelPermalink }}">{{ .Title }}</a>
    <span class="breadcrumbs-separator"> > </span>
    {{ end }}
    <a class="breadcrumbs-current" href="{{ .RelPermalink }}">{{ .Title }}</a>
</div>
{{ end }}