mirror of https://github.com/onweru/compose.git

weru
14.45.2021 d11184874de8d048338d6495c19c2b111dbd4b1c
1
2
3
4
5
6
7
8
{{- $youtubeHost := "https://www.youtube.com/watch?v=" }}
{{- $url := .Get 0 }}
{{- if in $url $youtubeHost }}
  {{- $url = strings.TrimPrefix $youtubeHost $url }}
{{- end }}
<div class="video">
  <iframe src="https://www.youtube.com/embed/{{ $url }}?controls=1&rel=0" loading="lazy"></iframe>
</div>