An error occurred while loading the file. Please try again.
-
Gervaise Henry authored379f5444
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
people.html 1.51 KiB
{{ partial "header.html" . }}
<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="header">
<h1>{{ .Title }}</h1>
<h2>{{ .Description }}</h2>
</div>
<div class="content">
<div>
{{ range .Pages.ByWeight }}
<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" . }}