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

23 lines
803 B
HTML
Raw Normal View History

{{ define "main" }}
{{ $.Scratch.Set "speakers" slice }}
{{ .Content }}
{{ range where $.Site.RegularPages "Section" "evenementen" }}
{{ if .Params.speakers }}
{{ $.Scratch.Add "speakers" .Params.speakers }}
{{ end }}
{{ end }}
{{ if (gt ($.Scratch.Get "speakers" | len) 0) }}
{{ range $key,$val := $.Scratch.Get "speakers" | sort | uniq }}
{{ with (index $.Site.Data.personen $val) }}
<h3>&raquo; {{ .name }}</h3>
{{ partial "show-image-of-person.html" (dict "context" . "profile_details" . "hide_figcaption" true "add_link_to_image" true) }}
{{ $firstname := index (split .name " ") 0 }}
{{ if not .profile_page }}<small>Deze spreker heeft nog geen profielpagina</small>{{ end }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}