updating front page after mission trip apps ending

This commit is contained in:
Chris Cochrun 2025-02-07 17:15:43 -06:00
parent be2a2cf1e7
commit 6df2cd59bf
4 changed files with 46 additions and 17 deletions

View file

@ -1,6 +1,8 @@
{{- $vid := .Get "src" -}}
{{- $abs := .Get "abs" | default true -}}
{{- $width := .Get "width" | default "w-full" -}}
{{- $aspect := .Get "aspect" | default "aspect-video" -}}
<div style="display: flex;" class="w-full">
<iframe class="pt-vid flex-auto aspect-video w-full" sandbox="allow-same-origin allow-scripts allow-popups" src="{{ $vid }}?warningTitle=0" frameborder="0" allowfullscreen></iframe>
<div style="display: flex;" class="{{ $width }}">
<iframe class="pt-vid flex-auto {{ $aspect }} {{ $width }}" sandbox="allow-same-origin allow-scripts allow-popups" src="{{ $vid }}?warningTitle=0" frameborder="0" allowfullscreen></iframe>
</div>