6
0
Fork 0

Eerste opmaak van talks

This commit is contained in:
Michael Boelen 2023-05-22 11:46:50 +02:00
parent 49ff9a64c3
commit 1307f1d10e

View file

@ -0,0 +1,14 @@
{{ define "main" }}
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
<div>{{ .Content }}</div>
{{ 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 }}
<a href="{{ .Params.recording.url }}">Bekijk opname</a>
{{ end }}
{{ end }}
{{ end }}