add multiple chair to workgroups

Signed-off-by: Toshaan Bharvani <toshaan@vantosh.com>
archetype-theme-transition
Toshaan Bharvani 3 years ago
parent 5bf86bc3b7
commit 9411279323

@ -1,7 +1,8 @@
--- ---
title: "Accelerator Workgroup" title: "Accelerator Workgroup"
wgtype: sig wgtype: sig
chair: curtwollbrink chair:
- curtwollbrink
members: members:
- ibm - ibm
- vantosh - vantosh

@ -1,7 +1,8 @@
--- ---
title: "Compliance Workgroup" title: "Compliance Workgroup"
wgtype: twg wgtype: twg
chair: sandywoodward chair:
- sandywoodward
members: members:
- ibm - ibm
- yadro - yadro

@ -1,7 +1,8 @@
--- ---
title: "High-Performance-Computing Workgroup" title: "High-Performance-Computing Workgroup"
wgtype: sig wgtype: sig
chair: allancantle chair:
- allancantle
members: members:
- allancantle - allancantle
- ibm - ibm

@ -1,7 +1,8 @@
--- ---
title: "Instruction Set Architecture Workgroup" title: "Instruction Set Architecture Workgroup"
wgtype: twg wgtype: twg
chair: paulmackerras chair:
- paulmackerras
members: members:
- ibm - ibm
- yadro - yadro

@ -1,7 +1,9 @@
--- ---
title: "LibreBMC SIG" title: "LibreBMC SIG"
wgtype: sig wgtype: sig
chair: paullecocq chair:
- toddrosendahl
- karolgugala
members: members:
- ibm - ibm
- google - google

@ -1,7 +1,9 @@
--- ---
title: "Machine Learning AI Work Group" title: "Machine Learning AI Work Group"
wgtype: sig wgtype: sig
chair: lionelclavien chair:
- lionelclavien
- kipwarner
members: members:
- innoboost - innoboost
- google - google

@ -1,7 +1,9 @@
--- ---
title: "Memory Workgroup" title: "Memory Workgroup"
wgtype: twg wgtype: twg
chair: pierreluccantin chair:
- pierreluccantin
- curtwollbrink
members: members:
- ibm - ibm
- google - google

@ -1,7 +1,8 @@
--- ---
title: "PowerPi Workgroup" title: "PowerPi Workgroup"
wgtype: sig wgtype: sig
chair: yehowshuaimmanuel chair:
- alexeystepanov
members: members:
- ibm - ibm
- yadro - yadro

@ -1,7 +1,8 @@
--- ---
title: "System Software TWG" title: "System Software TWG"
wgtype: twg wgtype: twg
chair: michalzygowski chair:
- michalzygowski
members: members:
- ibm - ibm
- vantosh - vantosh

@ -20,17 +20,21 @@
<li>Workgroup Details : <li>Workgroup Details :
<ul> <ul>
{{ if .Param "chair" }} {{ if .Param "chair" }}
{{ $chairfile := printf "%s/%s" "persons" (.Param "chair") }} <li>Chair :<ul>
{{ with $.Site.GetPage $chairfile }} {{ range (.Param "chair") }}
<li>Chair : <a href="{{ .Permalink }}">{{ .Title }}</a> {{ $chairfile := printf "%s/%s" "persons" . }}
{{ with $.Site.GetPage $chairfile }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a>
{{ if .Param "member" }} {{ if .Param "member" }}
{{ $memberfile := printf "%s/%s" "members" (.Param "member") }} {{ $memberfile := printf "%s/%s" "members" (.Param "member") }}
{{ with $.Site.GetPage $memberfile }} {{ with $.Site.GetPage $memberfile }}
(<a href="{{ .Permalink }}">{{ .Title }}</a>) (<a href="{{ .Permalink }}">{{ .Title }}</a>)
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ end }}
</li> </li>
{{ end }} {{ end }}
</ul></li>
{{ end }} {{ end }}
{{ if .Param "wgtype" }} {{ if .Param "wgtype" }}
{{ $data := index $.Site.Data }} {{ $data := index $.Site.Data }}

Loading…
Cancel
Save