{{ define "main" }}
  <div>{{ .Content }}</div>


  {{ if .Params.speakers }}
    <div>
      {{ $count := .Params.speakers | len }}
      <h2>{{ i18n "speaker" (dict "Count" $count) | strings.FirstUpper }}</h2>
      <section>
        {{ .Scratch.Set "related_speakers" .Params.speakers }}
        {{ partial "show-speakers-small.html" . }}
      </section>
    </div>
  {{ end }}

  {{ if isset .Params "presentation" }}
    <h2>Presentatie</h2>
    {{ if .Params.presentation.filename }}
      {{ if findRE `.pdf$` .Params.presentation.filename 1 }}
        {{ partial "show-svg-icon.html" (dict "context" . "icon" "file-pdf" "alt" "PDF-icoon") }}
        <a href="/bestanden/presentaties/{{ .Params.presentation.filename }}">Presentatie</a>
      {{ end }}
    {{ else if .Params.presentation.link }}
        <a href="{{ .Params.presentation.link }}" rel="nofollow">Presentatie (externe link)</a>
    {{ end }}
  {{ end }}

  {{ if .Params.recording.url }}
    <h2>Opname</h2>
    {{ if .Params.recording.platform }}
      {{ if eq .Params.recording.platform "youtube" }}{{ partial "show-svg-icon.html" (dict "context" . "icon" "youtube" "alt" "YouTube-icoon") }}{{ end }}
    {{ end }}
    <a href="{{ .Params.recording.url }}">Bekijk opname</a>
  {{ end }}


{{ end }}