{{ .Title }}
-
{{ if .Param "chair" }}
{{ $chairfile := printf "%s/%s" "persons" (.Param "chair") }}
{{ with $.Site.GetPage $chairfile }}
- Chair : {{ .Title }} {{ if .Param "member" }} {{ $memberfile := printf "%s/%s" "members" (.Param "member") }} {{ with $.Site.GetPage $memberfile }} ({{ .Title }}) {{ end }} {{ end }} {{ end }} {{ end }} {{ if .Param "wgtype" }} {{ $data := index $.Site.Data }} {{ $wgtype := .Param "wgtype" }} {{ range $data.workgroups }} {{ if eq $wgtype .id }}
- Type : {{ .name }} {{ end }} {{ end }} {{ end }} {{ if .Param "participation" }}
- Participation : {{ .Param "participation" }} {{ end }} {{ if .Param "git" }}
- Git : {{ .Param "git" }} {{ end }} {{ if .Param "discussion" }}
- Discussion : {{ .Param "discussion" }} {{ end }}
-
{{ range $member := .Param "members" }}
{{ $memberfile := printf "%s/%s" "members" $member }}
{{ with $.Site.GetPage $memberfile }}
- {{ if .Param "image" }} {{ $imagename := .Param "image" }} {{ $imagelocation := (printf "%s/%s" "images/members/" $imagename) }} {{ $imageresource := resources.Get $imagelocation }} {{ $image := $imageresource.Fit "50x50" }} {{ else }} {{ .Title }} {{ end }} {{ end }} {{ end }}