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

12 lines
283 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
{{ $titles := ( slice )}}
{{ range . }}
{{ $titles = $titles | append (slice (.Title | plainify) )}}
{{ with .Sections }}
{{ $titles = $titles | append ( partial "cv/organisations/recursive-children-titles.html" . ) }}
{{ end }}
{{ end }}
{{ return $titles }}