fediversity_website/themes/nluug/layouts/evenementen/event-talk.html

15 lines
461 B
HTML
Raw Normal View History

2023-05-22 11:46:50 +02:00
{{ 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 }}