6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/team/single.html

23 lines
597 B
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
<h2>Team</h2>
<div style="display: grid;grid-template-columns: 1fr 1fr 1fr;column-gap: 5px;">
{{ range $key,$val := .Params.team_members }}
{{ with (index $.Site.Data.personen $val) }}
<div>
{{ if .thumbnail }}
<figure>
<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}" />
<figcaption>
<strong>{{ .name }}</strong>
</figcaption>
</figure>
{{ end }}
</div>
{{ end }}
{{ end }}
</div>
{{ end }}