Added breadcrumbs in the Docs section and display tags list in blog posts

This commit is contained in:
Julien Dessaux 2021-03-23 22:58:01 +01:00
parent f5eb463f91
commit f0d45fe81f
4 changed files with 28 additions and 1 deletions

View file

@ -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>