mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
2.5 KiB
Executable File
2.5 KiB
Executable File
title, description, categories, keywords
| title | description | categories | keywords |
|---|---|---|---|
| YouTube | Embed a YouTube video in your content using the youtube shortcode. |
{{< note >}}
To override Hugo's embedded youtube shortcode, copy the [source code] to a file with the same name in the layouts/shortcodes directory.
[source code]: {{% eturl youtube %}} {{< /note >}}
Example
To display a YouTube video with this URL:
https://www.youtube.com/watch?v=0RKpf3rK57I
Include this in your Markdown:
{{</* youtube 0RKpf3rK57I */>}}
Hugo renders this to:
{{< youtube 0RKpf3rK57I >}}
Arguments
- id
- (
string) The videoid. Optional if theidis provided as a positional argument as shown in the example above. - allowFullScreen
- {{< new-in 0.125.0 />}}
- (
bool) Whether theiframeelement can activate full screen mode. Default istrue. - autoplay
- {{< new-in 0.125.0 />}}
- (
bool) Whether to automatically play the video. Forcesmutetotrue. Default isfalse. - class
- (
string) Theclassattribute of the wrappingdivelement. When specified, removes thestyleattributes from theiframeelement and its wrappingdivelement. - controls
- {{< new-in 0.125.0 />}}
- (
bool) Whether to display the video controls. Default istrue. - end
- {{< new-in 0.125.0 />}}
- (
int) The time, measured in seconds from the start of the video, when the player should stop playing the video. - loading
- {{< new-in 0.125.0 />}}
- (
string) The loading attribute of theiframeelement, eithereagerorlazy. Default iseager. - loop
- {{< new-in 0.125.0 />}}
- (
bool) Whether to indefinitely repeat the video. Ignores thestartandendarguments after the first play. Default isfalse. - mute
- {{< new-in 0.125.0 />}}
- (
bool) Whether to mute the video. Alwaystruewhenautoplayistrue. Default isfalse. - start
- {{< new-in 0.125.0 />}}
- (
int) The time, measured in seconds from the start of the video, when the player should start playing the video. - title
- (
string) Thetitleattribute of theiframeelement. Defaults to "YouTube video".
Example using some of the above:
{{</* youtube id=0RKpf3rK57I start=30 end=60 loading=lazy */>}}
Privacy
Adjust the relevant privacy settings in your site configuration.
{{< code-toggle config=privacy.youTube />}}
- disable
- (
bool) Whether to disable the shortcode. Default isfalse. - privacyEnhanced
- (
bool) Whether to block YouTube from storing information about visitors on your website unless the user plays the embedded video. Default isfalse.