18 lines
655 B
HTML
18 lines
655 B
HTML
{{- if ( not ( and ( .Params.redact ) ( ne $.Site.Params.redact "show" ) ) ) -}}
|
|
<li class="hierarchy-item hierarchy-item--child">
|
|
{{- if ( and ( .Params.redact ) ( ne $.Site.Params.redact "show" ) ) -}}
|
|
{{- if ( eq $.Site.Params.redact "black" ) -}}
|
|
{{- partialCached "redact-black.html" . -}}
|
|
{{- end -}}
|
|
{{- else -}}
|
|
<a href="{{- .RelPermalink -}}">
|
|
{{- default .Title .Params.markup_title | .Page.RenderString -}}
|
|
</a>
|
|
{{- range .Sections -}}
|
|
<ul>
|
|
{{- partial "cv/organisations/recursive-children.html" . -}}
|
|
</ul>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</li>
|
|
{{- end -}}
|