8 lines
222 B
HTML
8 lines
222 B
HTML
|
{{ $organisations := slice }}
|
||
|
{{ range .Site.Pages }}
|
||
|
{{ if .IsDescendant ( .GetPage "cv/organisations" ) }}
|
||
|
{{ $organisations = $organisations | append . }}
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
{{ return $organisations }}
|