diff --git a/themes/nluug/layouts/evenementen/event-talk.html b/themes/nluug/layouts/evenementen/event-talk.html
index e4f2277..199fab3 100644
--- a/themes/nluug/layouts/evenementen/event-talk.html
+++ b/themes/nluug/layouts/evenementen/event-talk.html
@@ -2,6 +2,19 @@
{{ with .Title }}
{{ . }}
{{ end }}
{{ .Content }}
+
+ {{ if .Params.persons }}
+
+ {{ $count := .Params.persons | len }}
+
{{ i18n "speaker" (dict "Count" $count) | strings.FirstUpper }}
+ {{ range $person := .Params.persons }}
+ {{ with (index site.Data.personen $person) }}
+ {{ partial "show-image-of-person.html" (dict "context" . "profile_details" . "hide_figcaption" true) }}
+ {{ end }}
+ {{ end }}
+
+ {{ end }}
+
{{ if .Params.presentation.filename }}
Presentatie
{{ if findRE `.pdf$` .Params.presentation.filename 1 }}
@@ -18,4 +31,5 @@
Bekijk opname
{{ end }}
+
{{ end }}