You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.3 KiB
HTML
87 lines
2.3 KiB
HTML
{{ partial "header.html" . }}
|
|
|
|
{{ partial "navbar.html" . }}
|
|
|
|
<main id="main">
|
|
|
|
<section id="workgroupsingle">
|
|
<div id="workgroupsingle" class="container-fluid">
|
|
<div class="section-header">
|
|
<div class="row">
|
|
<div class="col-lg-12 text-center">
|
|
<h3 class="section-title">{{ .Title }}</h3>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-2"> </div>
|
|
<div class="col-lg-4">
|
|
{{ if .Param "chair" }}
|
|
{{ $chairfile := printf "%s/%s" "persons" (.Param "chair") }}
|
|
{{ with $.Site.GetPage $chairfile }}
|
|
Work Group Chair : <a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
{{ if .Param "member" }}
|
|
{{ $memberfile := printf "%s/%s" "members" (.Param "member") }}
|
|
{{ with $.Site.GetPage $memberfile }}
|
|
(<a href="{{ .Permalink }}">{{ .Title }}</a>)
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if .Param "wgtype" }}
|
|
{{ $data := index $.Site.Data }}
|
|
{{ $wgtype := .Param "wgtype" }}
|
|
{{ range $data.workgroups }}
|
|
{{ if eq $wgtype .id }}
|
|
<br>
|
|
Work Group Type : {{ .name }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-lg-4">
|
|
{{ if .Param "members" }}
|
|
Active Voting Work Group Members :<br>
|
|
<ul>
|
|
{{ range $member := .Param "members" }}
|
|
{{ $memberfile := printf "%s/%s" "members" $member }}
|
|
{{ with $.Site.GetPage $memberfile }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">
|
|
{{ if .Param "image" }}
|
|
{{ $imagename := .Param "image" }}
|
|
{{ $imagelocation := (printf "%s/%s" "images/members/" $imagename) }}
|
|
{{ $imageresource := resources.Get $imagelocation }}
|
|
{{ $image := $imageresource.Fit "50x50" }}
|
|
<img src="{{ $image.RelPermalink }}" alt="{{ .Title }}" title="{{ .Title }}">
|
|
{{ else }}
|
|
{{ .Title }}
|
|
{{ end }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-lg-2"> </div>
|
|
</div>
|
|
<div class="row">
|
|
<span class="section-divider"></span>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
{{ if .Content }}
|
|
<div class="col-lg-2"> </div>
|
|
<div class="col-lg-8">
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="col-lg-2"> </div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
{{ partial "footer.html" . }}
|