After Width: | Height: | Size: 659 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 19 KiB |
@ -1,7 +1,7 @@
@@ -1,7 +1,7 @@
|
||||
--- |
||||
title: "Current Member List" |
||||
title: "OpenPOWER Members" |
||||
date: 2021-03-03 |
||||
draft: false |
||||
--- |
||||
|
||||
Our current members listed by membership levels : |
||||
|
||||
|
@ -1,24 +1,24 @@
@@ -1,24 +1,24 @@
|
||||
- name: Platinum |
||||
- name: Platinum Members |
||||
identifier: platinum |
||||
size: 300x300 |
||||
col: 6 |
||||
- name: Gold |
||||
- name: Gold Members |
||||
identifier: gold |
||||
size: 200x200 |
||||
col: 4 |
||||
- name: Silver |
||||
- name: Silver Members |
||||
identifier: silver |
||||
size: 150x150 |
||||
col: 3 |
||||
- name: Academic |
||||
- name: Academic Members |
||||
identifier: academic |
||||
size: 100x100 |
||||
col: 2 |
||||
- name: Associate |
||||
col: 2 |
||||
- name: Associate Members |
||||
identifier: associate |
||||
size: 100x100 |
||||
col: 2 |
||||
- name: Individual |
||||
- name: Individual Members |
||||
identifier: individual |
||||
size: 1x1 |
||||
col: 1 |
||||
|
@ -0,0 +1,31 @@
@@ -0,0 +1,31 @@
|
||||
|
||||
// Board of Directors |
||||
|
||||
#boardofdirectors { |
||||
article { |
||||
h3 { |
||||
text-transform: uppercase; |
||||
} |
||||
} |
||||
} |
||||
|
||||
// Members |
||||
|
||||
#members { |
||||
|
||||
.membership-level { |
||||
border-top: 1px solid#1b1c1f; |
||||
|
||||
.box { |
||||
min-height: 110px; |
||||
a { |
||||
text-decoration: none; |
||||
color:black; |
||||
} |
||||
|
||||
img { |
||||
max-width: 210px; |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,72 +1,47 @@
@@ -1,72 +1,47 @@
|
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ partial "navbar.html" . }} |
||||
|
||||
<main id="main"> |
||||
|
||||
<section id="boardofdirectors"> |
||||
<div class="container-fluid"> |
||||
<div class="section-header"> |
||||
<h3 class="section-title">{{ .Title }}</h3> |
||||
<span class="section-divider"></span> |
||||
<p class="section-description">{{ .Content }}</p> |
||||
</div> |
||||
<div class="row"> |
||||
{{ range .Data.Pages.ByWeight }} |
||||
<div class="col-lg-4" id="person"> |
||||
<div id="person-header"> |
||||
<div class="row"> |
||||
<div class="col-lg-8"> |
||||
<h1>{{ .Title }}</h1> |
||||
({{ .Param "position" }}) |
||||
</div> |
||||
<main id="main" class="main"> |
||||
<div id="boardofdirectors"> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<h1 class="section-header my-3 my-md-5 pb-2 pb-md-3 text-center">{{ .Title }}</h1> |
||||
{{ range .Data.Pages.ByWeight }} |
||||
<article class="post__article row"> |
||||
<div class="col-md-2 mb-4 mb-md-0 pt-md-3"> |
||||
{{ $personfile := .File.BaseFileName }} |
||||
{{ range where .Site.RegularPages "Section" "persons" }} |
||||
{{ $person := .File.BaseFileName }} |
||||
{{ if eq $personfile $person }} |
||||
<div class="col-lg-4" id="member"> |
||||
{{ $member := .Param "member" }} |
||||
{{ range where .Site.RegularPages "Section" "members" }} |
||||
{{ $membercompany := .File.BaseFileName }} |
||||
{{ if eq $member $membercompany }} |
||||
<a href="{{ .Permalink }}"> |
||||
{{ if .Param "image" }} |
||||
{{ if .Param "image" }} |
||||
{{ $imagename := .Param "image" }} |
||||
{{ $imagelocation := (printf "%s/%s" "images/members/" $imagename) }} |
||||
{{ $imagelocation := (printf "%s/%s" "images/persons/" $imagename) }} |
||||
{{ $imageresource := resources.Get $imagelocation }} |
||||
{{ $image := $imageresource.Fit "100x100" }} |
||||
<img src="{{ $image.RelPermalink }}" alt="{{ .Title }}" title="{{ .Title }}"> |
||||
{{ $image := $imageresource.Fit "390x390" }} |
||||
<img class="img-fluid" src="{{ $image.RelPermalink }}" alt="{{ .Title }}" title="{{ .Title }}"> |
||||
{{ else }} |
||||
{{ .Title }} |
||||
{{ end }} |
||||
</a> |
||||
{{ end }} |
||||
{{ end }} |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-lg-4"> |
||||
{{ if .Param "image" }} |
||||
{{ $imagename := .Param "image" }} |
||||
{{ $imagelocation := (printf "%s/%s" "images/persons/" $imagename) }} |
||||
{{ $imageresource := resources.Get $imagelocation }} |
||||
{{ $image := $imageresource.Fit "100x400" }} |
||||
<img src="{{ $image.RelPermalink }}" alt="{{ .Title }}"> |
||||
{{ else }} |
||||
|
||||
{{ end }} |
||||
{{ end }} |
||||
{{ end }} |
||||
</div> |
||||
<div class="col-lg-8">{{ .Content }}</div> |
||||
</div> |
||||
<div class="col-md-10 pl-4"> |
||||
<h2>{{ .Title }}, {{ .Param "position" }}</h2> |
||||
{{ $personfile := .File.BaseFileName }} |
||||
{{ range where .Site.RegularPages "Section" "persons" }} |
||||
{{ $person := .File.BaseFileName }} |
||||
{{ if eq $personfile $person }} |
||||
|
||||
<h3>{{ .Param "member" }}</h3> |
||||
<p>{{ .Content }}</p> |
||||
</div> |
||||
</article> |
||||
{{ end }} |
||||
{{ end }} |
||||
{{ end }} |
||||
{{ end }} |
||||
</div> |
||||
{{ end }} |
||||
</div> |
||||
</div> |
||||
</section> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</main> |
||||
|
||||
{{ partial "footer.html" . }} |
||||
|
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ partial "navbar.html" . }} |
||||
|
||||
<main id="main" class="main" > |
||||
<div id="governance" > |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div class="col-md-6 pr-3 pl-0"> |
||||
<h1 class="h2 section-header my-3 my-md-5 pb-2">{{ .Title }}</h1> |
||||
<div class="content"> |
||||
{{ .Content }} |
||||
</div> |
||||
</div> |
||||
<div class="col-md-6 pt-5 pl-3 pr-0"> |
||||
{{ if .Param "image" }} |
||||
<figure class="figure d-flex pt-3"> |
||||
{{ $imagename := .Param "image" }} |
||||
{{ $imagelocation := (printf "%s/%s" "images/governance/" $imagename) }} |
||||
{{ $imageresource := resources.Get $imagelocation }} |
||||
{{ if $imageresource }} |
||||
{{ $image := $imageresource.Fit "600x600" }} |
||||
<img src="{{ $image.RelPermalink }}" alt="{{ .Param "membership-benefits.image-table.alt" }}" title="{{ .Param "membership-benefits.image-table.alt" }}"> |
||||
{{ end }} |
||||
</figure> |
||||
{{ else }} |
||||
{{ .Title }} |
||||
{{ end }} |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</main> |
||||
|
||||
{{ partial "footer.html" . }} |