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/lidmaatschap/ereleden.html

15 lines
545 B
HTML

{{ define "main" }}
{{ .Content }}
<h2>Ereleden</h2>
{{ range $key,$val := $.Site.Data.personen }}
{{ if eq $val.honorary_member true }}
<h3{{ if $val.death_date }} class="deceased"{{ end }}>{{ $val.name }}</h3>
{{ partial "show-image-of-person.html" (dict "context" . "profile_details" $val "hide_figcaption" true) }}
{{ $firstname := index (split .name " ") 0 }}
{{ if .profile_page }}<a href="{{ .profile_page }}">Meer over {{ $firstname }}</a>{{ end }}
{{ end }}
{{ end }}
{{ end }}