Post

Layout: Header Video

Layout: Header Video

This post should display a header with a responsive video, if the theme supports it.

Settings

ParameterRequiredDescription
idRequiredID of the video
providerRequiredHosting provider of the video, either youtube or vimeo

YouTube

To embed the following YouTube video at url https://www.youtube.com/watch?v=-PVofD2A9t8 (long version) or https://youtu.be/-PVofD2A9t8 (short version) into a post or page’s main content you’d use:

1
{% include video id="-PVofD2A9t8" provider="youtube" %}

To embed it as a video header you’d use the following YAML Front Matter

1
2
3
4
header:
  video:
    id: -PVofD2A9t8
    provider: youtube

Vimeo

To embed the following Vimeo video at url https://vimeo.com/212731897 into a post or page’s main content you’d use:

1
{% include video id="212731897" provider="vimeo" %}

To embed it as a video header you’d use the following YAML Front Matter

1
2
3
4
header:
  video:
    id: 212731897
    provider: vimeo
This post is licensed under CC BY 4.0 by the author.