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/evenementen/speakers.html

15 lines
491 B
HTML

{{ define "main" }}
{{ .Content }}
<h2>Sprekers</h2>
{{ range $key,$val := $.Site.Data.personen }}
{{ if eq $val.speaker true }}
<h3>&raquo; {{ .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 }}