{{ .Title }}
- Workgroup Details :
-
{{ 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" }} {{ if eq (.Param "participation") "Public" }} {{ end }} {{ if eq (.Param "participation") "Members" }} {{ end }} {{ if eq (.Param "participation") "Limited" }} {{ end }} {{ end }}
- Workgroup Resources :
-
{{ if .Param "discussion" }}
- Discussion : {{ .Param "discussion" }} {{ end }} {{ if .Param "calendar" }}
- Webcal : {{ end }} {{ if .Param "git" }}
- Git : {{ end }} {{ if .Param "chat" }}
- Chat
- {{ .Param "chat.mattermost" }} {{ if .Param "chat.slack" }}
- {{ .Param "chat.slack" }} {{ end }} {{ if .Param "chat.irc" }}
- {{ .Param "chat.irc" }} {{ end }}
{{ end }}
{{ if .Param "files" }}
- Files : {{ .Param "files" }} {{ end }} {{ if .Param "kanban" }}
- Kanban : {{ .Param "kanban" }} {{ end }}
- Active Voting Work Group Members :
-
{{ 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 "75x75" }} {{ else }} {{ .Title }} {{ end }} {{ end }} {{ end }}
{{ end }}