add Board of directors, Events, default single, Governance pages
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 @@
|
|||||||
---
|
---
|
||||||
title: "Current Member List"
|
title: "OpenPOWER Members"
|
||||||
date: 2021-03-03
|
date: 2021-03-03
|
||||||
draft: false
|
draft: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Our current members listed by membership levels :
|
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
- name: Platinum
|
- name: Platinum Members
|
||||||
identifier: platinum
|
identifier: platinum
|
||||||
size: 300x300
|
size: 300x300
|
||||||
col: 6
|
col: 6
|
||||||
- name: Gold
|
- name: Gold Members
|
||||||
identifier: gold
|
identifier: gold
|
||||||
size: 200x200
|
size: 200x200
|
||||||
col: 4
|
col: 4
|
||||||
- name: Silver
|
- name: Silver Members
|
||||||
identifier: silver
|
identifier: silver
|
||||||
size: 150x150
|
size: 150x150
|
||||||
col: 3
|
col: 3
|
||||||
- name: Academic
|
- name: Academic Members
|
||||||
identifier: academic
|
identifier: academic
|
||||||
size: 100x100
|
size: 100x100
|
||||||
col: 2
|
col: 2
|
||||||
- name: Associate
|
- name: Associate Members
|
||||||
identifier: associate
|
identifier: associate
|
||||||
size: 100x100
|
size: 100x100
|
||||||
col: 2
|
col: 2
|
||||||
- name: Individual
|
- name: Individual Members
|
||||||
identifier: individual
|
identifier: individual
|
||||||
size: 1x1
|
size: 1x1
|
||||||
col: 1
|
col: 1
|
||||||
|
@ -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 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
{{ partial "navbar.html" . }}
|
{{ partial "navbar.html" . }}
|
||||||
|
|
||||||
<main id="main">
|
<main id="main" class="main">
|
||||||
|
<div id="boardofdirectors">
|
||||||
<section id="boardofdirectors">
|
<div class="container">
|
||||||
<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">
|
<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 }}
|
{{ range .Data.Pages.ByWeight }}
|
||||||
<div class="col-lg-4" id="person">
|
<article class="post__article row">
|
||||||
<div id="person-header">
|
<div class="col-md-2 mb-4 mb-md-0 pt-md-3">
|
||||||
<div class="row">
|
|
||||||
<div class="col-lg-8">
|
|
||||||
<h1>{{ .Title }}</h1>
|
|
||||||
({{ .Param "position" }})
|
|
||||||
</div>
|
|
||||||
{{ $personfile := .File.BaseFileName }}
|
{{ $personfile := .File.BaseFileName }}
|
||||||
{{ range where .Site.RegularPages "Section" "persons" }}
|
{{ range where .Site.RegularPages "Section" "persons" }}
|
||||||
{{ $person := .File.BaseFileName }}
|
{{ $person := .File.BaseFileName }}
|
||||||
{{ if eq $personfile $person }}
|
{{ 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" }}
|
{{ $imagename := .Param "image" }}
|
||||||
{{ $imagelocation := (printf "%s/%s" "images/members/" $imagename) }}
|
{{ $imagelocation := (printf "%s/%s" "images/persons/" $imagename) }}
|
||||||
{{ $imageresource := resources.Get $imagelocation }}
|
{{ $imageresource := resources.Get $imagelocation }}
|
||||||
{{ $image := $imageresource.Fit "100x100" }}
|
{{ $image := $imageresource.Fit "390x390" }}
|
||||||
<img src="{{ $image.RelPermalink }}" alt="{{ .Title }}" title="{{ .Title }}">
|
<img class="img-fluid" src="{{ $image.RelPermalink }}" alt="{{ .Title }}" title="{{ .Title }}">
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ .Title }}
|
{{ .Title }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</a>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</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>
|
</div>
|
||||||
</div>
|
</article>
|
||||||
<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 }}
|
||||||
</div>
|
|
||||||
<div class="col-lg-8">{{ .Content }}</div>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
@ -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" . }}
|