Files
website/layouts/shortcodes/vimeo.html
2025-03-08 18:31:52 -08:00

19 lines
744 B
HTML

{{ $align := .Get "align" | default "center" }}
{{ $width := .Get "width" | default 640 }}
{{ $height := .Get "height" | default 360 }}
{{ $aspectRatio := mul (div (float $height) (float $width)) 100 }}
<div style="text-align: {{ $align }};">
<div class="video-container" style="position: relative; padding-bottom: {{ printf "%.2f" $aspectRatio }}%; height: 0; overflow: hidden; max-width: {{ $width }}px;">
<iframe
src="https://player.vimeo.com/video/{{ .Get 0 }}"
width="{{ $width }}"
height="{{ $height }}"
frameborder="0"
allow="autoplay; fullscreen; picture-in-picture"
allowfullscreen
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;">
</iframe>
</div>
</div>