aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/breadcrumbs.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/breadcrumbs.html')
-rw-r--r--layouts/partials/breadcrumbs.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
new file mode 100644
index 0000000..814ec26
--- /dev/null
+++ b/layouts/partials/breadcrumbs.html
@@ -0,0 +1,13 @@
+<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>