Boston 2023 media and download links for boston and seattle 2023.

This commit is contained in:
2024-10-29 00:21:14 +02:00
parent ea2be4e354
commit 618e5e66d8
34 changed files with 288 additions and 54 deletions

View File

@@ -26,15 +26,32 @@
<div class="flex-grow flex flex-col gap-5">
{{ range .Params.Videos }}
<div class="video-container">
<iframe
src="{{ .embed }}"
frameborder="0"
allow="autoplay; fullscreen; picture-in-picture; clipboard-write"
style="width:100%;height:100%;"
title="{{ .title }}">
</iframe>
{{ if eq .service "vimeo" }}
<iframe
src="{{ .embed }}"
frameborder="0"
allow="autoplay; fullscreen; picture-in-picture; clipboard-write"
style="width:100%;height:100%;"
title="{{ .title }}">
</iframe>
{{ else if eq .service "youtube" }}
<iframe
src="{{ .embed }}"
title="{{ .title }}"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
style="width:100%;height:100%;"
allowfullscreen>
</iframe>
{{ else }}
<a href="{{ .embed }}">{{ .title }}</a>
{{ end }}
</div>
{{ end }}
{{ range .Params.Notes }}
{{ partial "components/bignote.html" . }}
{{ end }}
</div>
<div class="flex flex-col gap-5 lg:w-1/3">
<div class="dark:text-white">
@@ -52,25 +69,27 @@
<h4 class="mb-2">About the speaker{{ if (gt (len .Params.Speakers) 1) }}s{{ end }}</h4>
<div class="flex flex-col gap-3">
{{ range .Params.Speakers }}
<div class="flex gap-8 items-center">
<div class="grow">
<div class="">
<div class="">
<div class="font-bold dark:text-white">{{ .name }}</div>
{{ if .bio }}
{{ if or .bio .image }}
<div>
{{ .bio | markdownify }}
{{ if .image }}
{{ $imageurl := resources.Get .image }}
{{ if $imageurl}}
<div
class="rounded-full aspect-square overflow-hidden w-24 float-right ml-2 mb-2"
style="shape-outside: circle(50%); background: url({{ $imageurl.RelPermalink }}) center top no-repeat; background-size: cover;"
title="{{ .name }}"
></div>
{{ end }}
{{ end }}
{{ if .bio }}
{{ .bio | markdownify }}
{{ end }}
</div>
{{ end }}
</div>
{{ if .image }}
{{ $imageurl := resources.Get .image }}
{{ if $imageurl}}
<div
class="rounded-full aspect-square overflow-hidden shrink-0 w-24 self-start"
style="background: url({{ $imageurl.RelPermalink }}) center top no-repeat; background-size: cover;"
title="{{ .name }}"
></div>
{{ end }}
{{ end }}
</div>
{{ end }}
</div>