forked from website/openpower.foundation
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.
85 lines
2.4 KiB
HTML
85 lines
2.4 KiB
HTML
{{ $now := now.Format "20060102" }}
|
|
{{ $memberstatus := true }}
|
|
{{ $cancelled := now.Format "20060102" }}
|
|
{{ if isset .Params "cancelled" }}
|
|
{{ $cancelled = time (.Param "cancelled") | dateFormat "20060102" }}
|
|
{{ if lt $cancelled $now }}
|
|
{{ $memberstatus = false }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if eq $memberstatus true }}
|
|
|
|
{{ partial "header.html" . }}
|
|
{{ partial "navbar.html" . }}
|
|
<main id="main">
|
|
<section id="membersingle">
|
|
<div id="membersingle" class="container-fluid">
|
|
<div class="section-header">
|
|
<div class="row">
|
|
<div class="col-lg-2"> </div>
|
|
<div class="col-lg-6">
|
|
{{ if .Param "image" }}
|
|
{{ $imagename := .Param "image" }}
|
|
{{ $imagelocation := (printf "%s/%s" "images/members/" $imagename) }}
|
|
{{ $imageresource := resources.Get $imagelocation }}
|
|
{{ $image := $imageresource.Fit "500x500 webp" }}
|
|
<img src="{{ $image.RelPermalink }}" alt="{{ .Title }}">
|
|
{{ else }}
|
|
<h3 class="section-title">{{ .Title }}</h3>
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-lg-4">
|
|
{{ if .Param "level" }}
|
|
<div>Member Level :
|
|
{{ $level := .Param "level" }}
|
|
{{ $data := index $.Site.Data }}
|
|
{{ range $data.memberlevels }}
|
|
{{ $key := .identifier }}
|
|
{{ if eq $level $key }}
|
|
{{ .name }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ if .Param "country" }}
|
|
<div>Registered Country : {{ .Param "country" }}</div>
|
|
{{ end }}
|
|
{{ if .Param "joined" }}
|
|
<div>Joined foundation in : {{ .Param "joined" }}</div>
|
|
{{ end }}
|
|
{{ if .Param "link" }}
|
|
<div><a href="{{ .Param "link" }}">Visit Website <i class="fas fa-external-link-alt"></i></a></div>
|
|
{{ end }}
|
|
Workgroup participation :
|
|
<ul>
|
|
{{ $membercode := .File.BaseFileName }}
|
|
{{ range where .Site.RegularPages "Section" "groups" }}
|
|
{{ $wgname := .Title }}
|
|
{{ $wgurl := .Permalink }}
|
|
{{ $wgcode := path.Base .Permalink }}
|
|
{{ range $wgmembers := (index $.Site.Data.groups $wgcode) }}
|
|
{{ range $wgmember := $wgmembers }}
|
|
{{ if eq $wgmember $membercode }}
|
|
<li><a href="{{ $wgurl }}">{{ $wgname }}</a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</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" . }}
|
|
|
|
{{ end }}
|