{{ partial "header.html" . }} {{ partial "navbar.html" . }}

{{ .Title }}

{{ range .Data.Pages.ByWeight }} {{ $personfilename := .File.BaseFileName }} {{ $personfile := printf "%s/%s" "persons" $personfilename }}
{{ with $.Site.GetPage $personfile }} {{ if .Param "image" }} {{ $imagename := .Param "image" }} {{ $imagelocation := (printf "%s/%s" "images/persons/" $imagename) }} {{ $imageresource := resources.Get $imagelocation }} {{ $image := $imageresource.Fit "390x390 webp" }} {{ .Title }} {{ else }} {{ .Title }} {{ end }} {{ end }}

{{ .Title }}, {{ .Param "position" }}

{{ with $.Site.GetPage $personfile }} {{ $memberfile := printf "%s/%s" "members" (.Param "member") }} {{ with $.Site.GetPage $memberfile }}

{{ .Title }}

{{ end }}

{{ .Content }}

{{ end }}
{{ end }}
{{ partial "footer.html" . }}