6
0
Fork 0

Tonen van alle personen die een lezing hebben gegeven

This commit is contained in:
Michael Boelen 2023-06-08 15:47:39 +02:00
parent 6fd762b3e2
commit fb4c5b4f7d

View file

@ -1,14 +1,22 @@
{{ define "main" }}
{{ $.Scratch.Set "speakers" slice }}
{{ .Content }}
<h2>Sprekers</h2>
{{ range $key,$val := $.Site.Data.personen }}
{{ if eq $val.speaker true }}
{{ 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" $val "hide_figcaption" true "add_link_to_image" true) }}
{{ 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 }}