mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
21 lines
478 B
HTML
21 lines
478 B
HTML
<ol class="breadcrumbnav">
|
|
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
|
|
</ol>
|
|
|
|
{{ define "breadcrumbnav" }}
|
|
{{ if .p1.Parent }}
|
|
{{ if not .p1.Parent.IsHome }}
|
|
{{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if eq .p1 .p2 }}
|
|
<li class="active">
|
|
<a href="{{ .p1.RelPermalink }}">{{ .p1.LinkTitle }}</a>
|
|
</li>
|
|
{{ else}}
|
|
<li>
|
|
<a href="{{ .p1.RelPermalink }}">{{ .p1.LinkTitle }} / </a>
|
|
</li>
|
|
{{ end }}
|
|
|
|
{{ end }} |