An error occurred while loading the file. Please try again.
-
Gervaise Henry authoreda335ace1
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
people.html 2.52 KiB
{{ partial "header.html" . }}
<div class="header">
<h1>{{ .Title }}</h1>
<h2>{{ .Description }}</h2>
</div>
<style>
@media (min-width: 1000px) {
.column {
float: left;
}
.left {
width: 25%;
}
.right {
width: 75%;
}
.row:after {
content: "";
display: table;
clear: both;
}
}
img.pic {
width: 175px;
padding: 7px;
border: 1px solid #ddd;
box-shadow: 4px 4px 5px #888;
}
</style>
<div class="content">
<div class="current">
{{ range where .Pages.ByWeight "Params.current" true }}
<div class="row">
<h3><strong>{{.Params.name}} {{.Params.degree}}</strong></h3>
<h4>{{.Params.tit}}</h4>
{{ if not (eq .Params.orcid "") }}
<p>
<a href="https://orcid.org/{{.Params.orcid}}" target="_blank"><img
src="https://orcid.org/sites/default/files/images/orcid_16x16.png">orcid.org/{{.Params.orcid}}</a>
</p>
{{ end }}
<div class="column left">
{{ if not (eq .Params.pic "") }}
<img src="images/{{.Params.pic}}" alt="" class="pic">
{{ end }}
</div>
<div class="column right" style="text-align: justify">
<p>{{.Content}}</p>
</div>
</div>
<hr><br>
{{end}}
</div>
<hr>
<h1>Former Members</h1>
<div class="former">
{{ range where .Pages.ByWeight "Params.current" false }}
<div class="row">
<h3><strong>{{.Params.name}} {{.Params.degree}}</strong></h3>
<h4>{{.Params.tit}}</h4>
{{ if not (eq .Params.orcid "") }}
<p>
<a href="https://orcid.org/{{.Params.orcid}}"><img
src="https://orcid.org/sites/default/files/images/orcid_16x16.png">orcid.org/{{.Params.orcid}}</a>
</p>
{{ end }}
<div class="column left">
{{ if not (eq .Params.pic "") }}
<img src="images/{{.Params.pic}}" alt="" class="pic">
{{ end }}
</div>
<div class="column right" style="text-align: justify">
<p>{{.Content}}</p>
</div>
</div>
<hr><br>
{{end}}
</div>
</div>
{{ partial "footer.html" . }}