diff --git a/themes/nluug/layouts/evenementen/event-talk.html b/themes/nluug/layouts/evenementen/event-talk.html
new file mode 100644
index 0000000..6f58584
--- /dev/null
+++ b/themes/nluug/layouts/evenementen/event-talk.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+ {{ with .Title }}
{{ . }}
{{ end }}
+ {{ .Content }}
+
+ {{ if .Params.recording }}
+ {{ if .Params.recording.platform }}
+ {{ if eq .Params.recording.platform "youtube" }}{{ partial "show-svg-icon.html" (dict "context" . "icon" "youtube" "iconsize" "64") }}{{ end }}
+ {{ end }}
+ {{ if .Params.recording.url }}
+ Bekijk opname
+ {{ end }}
+ {{ end }}
+
+{{ end }}