From 1307f1d10eefbd8439ed4f3d4d65746364ed97a5 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Mon, 22 May 2023 11:46:50 +0200 Subject: [PATCH] Eerste opmaak van talks --- themes/nluug/layouts/evenementen/event-talk.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 themes/nluug/layouts/evenementen/event-talk.html 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 }}