Manta Rhei as Vimeo Video Player Test

Written by Dirk Lüsebrink on June 21, 2017

Showing the Manta Rhei kinetic light fixture to test the vimeo jekyll include on this blog.

The markdown for the video embed looks like this:

{% include vimeo.html id="46289124" %}

The above markdown gets rendered by the jekyll template processing and becomes transformed to this static HTML:

<div class="video-container"><iframe 
     src="https://player.vimeo.com/video/46289124" 
     webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe></div>

Youtube

Of course, such an include snipped can be build for youtube as well:

From here:

{% include vimeo.html id="46289124" %}

to there:

<div class="video-container"><iframe 
     src="https://www.youtube.com/embed/8FcfJadYysk"
     width="560" 
     height="315" 
     frameborder="0" 
     allowfullscreen>
</iframe></div>

to this:

share this: