{% if page.youtube.id or page.vimeo.id %}
<div class="mt-4">
<h2 class="mb-2">Video</h2>
<div class="video-full">
{% if page.youtube.id %}
<iframe
width="678"
height="408"
src="//www.youtube.com/embed/{{ page.youtube.id }}"
frameborder="0"
allowfullscreen
>
</iframe>
{% elseif page.vimeo.id %}
src="https://player.vimeo.com/video/{{ page.vimeo.id }}"
width="640"
height="360"
webkitallowfullscreen
mozallowfullscreen
{% endif %}
</div>