~xdavidwu/xdavidwu.link

1db1d2981bb995531b32f2e8f19e91fd48cd250c — Maxime Michel 5 years ago 8dcab1c
Use privacy aware embed options for YouTube & Vimeo (#1964)

1 files changed, 2 insertions(+), 2 deletions(-)

M _includes/video
M _includes/video => _includes/video +2 -2
@@ 4,8 4,8 @@
<!-- Courtesy of embedresponsively.com //-->
<div class="responsive-video-container">
{% if video_provider == "vimeo" %}
  <iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
  <iframe src="https://player.vimeo.com/video/{{ video_id }}?dnt=true" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
{% elsif video_provider == "youtube" %}
  <iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
  <iframe src="https://www.youtube-nocookie.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
{% endif %}
</div>