setup
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<div class="content-margin">
|
||||
<ol class="breadcrumbs">
|
||||
{{ template "breadcrumbnav" (dict "p1" .Page) }}
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
{{ define "breadcrumbnav" }}
|
||||
{{ if .p1.Parent }}
|
||||
{{ template "breadcrumbnav" (dict "p1" .p1.Parent) }}
|
||||
{{ else if not .p1.IsHome }}
|
||||
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home) }}
|
||||
{{ end }}
|
||||
|
||||
{{ if not .p1.IsHome }}
|
||||
<li><span>/</span></li>
|
||||
<li><a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a></li>
|
||||
{{ else }}
|
||||
<li><a href="{{ .p1.Permalink }}">Home</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user