2023-05-08 09:50:28 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
2023-05-08 12:08:57 +02:00
|
|
|
{{ if .Params.contact_email }}
|
|
|
|
<h2>Contact</h2>
|
2023-05-17 14:33:21 +02:00
|
|
|
<p>Wil je iets weten of heb je een suggestie voor ons?</p>
|
2023-05-08 12:08:57 +02:00
|
|
|
<a href="mailto:{{ .Params.contact_email }}" class="button">Neem contact op</a>
|
|
|
|
{{ end }}
|
|
|
|
|
2023-06-08 19:43:56 +02:00
|
|
|
{{ if .Params.chairs }}
|
|
|
|
<h2>Verdeling van taken</h2>
|
|
|
|
<p>Voorzitter:
|
|
|
|
{{ range $key,$val := .Params.chairs }}
|
|
|
|
{{ with (index $.Site.Data.personen $val) }}
|
|
|
|
<a href="{{ .profile_page }}">{{ .name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{{ with .Params.secretaries }}
|
|
|
|
<p>Secretaris:
|
|
|
|
{{ range $key,$val := . }}
|
|
|
|
{{ with (index $.Site.Data.personen $val) }}
|
|
|
|
<a href="{{ .profile_page }}">{{ .name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Params.treasurers }}
|
|
|
|
<p>Penningmeester:
|
|
|
|
{{ range $key,$val := . }}
|
|
|
|
{{ with (index $.Site.Data.personen $val) }}
|
|
|
|
<a href="{{ .profile_page }}">{{ .name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Params.general_board_members }}
|
|
|
|
<p>Algemeen bestuurslid:
|
|
|
|
{{ range $key,$val := . }}
|
|
|
|
{{ with (index $.Site.Data.personen $val) }}
|
|
|
|
<a href="{{ .profile_page }}">{{ .name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2023-05-08 09:50:28 +02:00
|
|
|
<h2>Team</h2>
|
|
|
|
|
2023-05-24 10:20:41 +02:00
|
|
|
<div class="grid-team-members-small-photos">
|
2023-05-08 09:50:28 +02:00
|
|
|
{{ range $key,$val := .Params.team_members }}
|
|
|
|
{{ with (index $.Site.Data.personen $val) }}
|
2023-05-24 10:20:41 +02:00
|
|
|
<div>
|
|
|
|
{{ if .thumbnail }}
|
|
|
|
{{ $image := replace .thumbnail "200x200" "150x150" }}
|
|
|
|
{{ $alttext := printf "Foto van %s" .name }}
|
|
|
|
{{ partial "show-image.html" (dict "context" . "image" $image "alt" $alttext "figcaption" .name "link" .profile_page) }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2023-05-08 09:50:28 +02:00
|
|
|
{{ end }}
|
2023-05-24 10:20:41 +02:00
|
|
|
{{ end }}
|
2023-05-08 09:50:28 +02:00
|
|
|
</div>
|
2023-05-08 12:08:57 +02:00
|
|
|
|
2023-05-08 09:50:28 +02:00
|
|
|
{{ end }}
|