Omphaloskepsis-2/layouts/partials/cv/organisations/recursive-children.html

19 lines
664 B
HTML
Raw Normal View History

2023-12-12 22:40:30 +00:00
{{- if ( not ( and ( .Params.redact ) ( ne $.Site.Params.redact "show" ) ) ) -}}
2025-03-02 22:41:10 +01:00
<li class="hierarchy-item hierarchy-item--child">
2023-12-12 22:40:30 +00:00
{{- if ( and ( .Params.redact ) ( ne $.Site.Params.redact "show" ) ) -}}
2025-03-02 22:41:10 +01:00
{{- if ( eq $.Site.Params.redact "black" ) -}}
{{- partialCached "redact-black.html" . -}}
{{- end -}}
2023-12-12 22:40:30 +00:00
{{- else -}}
2025-03-02 22:41:10 +01:00
<a href="{{ .RelPermalink }}">
{{ default .Title .Params.markup_title | .Page.RenderString }}
</a>
{{- range .Sections -}}
<ul>
{{- partialCached "cv/organisations/recursive-children.html" . .Title -}}
</ul>
{{- end -}}
2023-12-12 22:40:30 +00:00
{{- end -}}
2025-03-02 22:41:10 +01:00
</li>
2023-12-12 22:40:30 +00:00
{{- end -}}