dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_compose
mirror of
https://github.com/onweru/compose.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
updated docs and added img
Ray
11.12.2023
29764d3cdc54e0f25f2c2f377f72eeebf1535dab
[external-software/github_gohugo_theme_compose.git]
/
layouts
/
shortcodes
/
youtube.html
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>