8 lines
359 B
HTML
8 lines
359 B
HTML
{{ $width := .Get 1 | default "560" }}
|
|
{{ $height := .Get 2 | default "315" }}
|
|
|
|
<div style="position: relative; width: {{ $width }}px; height: {{ $height }}px;">
|
|
<iframe src="https://www.youtube.com/embed/{{ .Get 0 }}" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
|
|
</div>
|
|
|