This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_partials/talk/video.html.twig

29 lines
683 B
Twig
Raw Normal View History

2019-06-12 20:37:32 +00:00
{% macro videoSrc(video) %}
2019-06-12 12:35:44 +00:00
{% set srcUrls = {
youtube: '//www.youtube.com/embed',
videopress: 'https://videopress.com/embed',
vimeo: 'https://player.vimeo.com/video',
} %}
2019-06-12 20:37:32 +00:00
{{ srcUrls[video.type] ~ '/' ~ video.id }}
2019-06-12 12:35:44 +00:00
{% endmacro %}
{% from _self import videoSrc %}
2019-06-12 20:37:32 +00:00
{% if page.video.id %}
2019-05-30 22:05:39 +00:00
<div class="mt-4">
2019-01-05 01:37:19 +00:00
<h2 class="mb-2">Video</h2>
2017-09-05 17:37:41 +00:00
2019-05-30 22:05:39 +00:00
<div class="video-full">
2019-06-12 12:35:44 +00:00
<iframe
width="678"
height="408"
2019-06-12 20:37:32 +00:00
src="{{ videoSrc(page.video) }}"
2019-06-12 12:35:44 +00:00
frameborder="0"
allowfullscreen
>
</iframe>
2017-09-05 17:37:41 +00:00
</div>
</div>
{% endif %}