From 0081156f7ac47e3a4e9b84a257966db6543ffa9c Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Tue, 27 Dec 2022 13:29:51 +0100 Subject: [PATCH] remove video borders --- layouts/partials/blocks/templates/video/dailymotion.html | 1 + layouts/partials/blocks/templates/video/vimeo.html | 1 + layouts/partials/blocks/templates/video/youtube.html | 1 + 3 files changed, 3 insertions(+) diff --git a/layouts/partials/blocks/templates/video/dailymotion.html b/layouts/partials/blocks/templates/video/dailymotion.html index e6e28a93..8e3ea419 100644 --- a/layouts/partials/blocks/templates/video/dailymotion.html +++ b/layouts/partials/blocks/templates/video/dailymotion.html @@ -2,5 +2,6 @@ class="dailymotion" src="https://www.dailymotion.com/embed/video/{{ .id }}" title="{{ .title }}" + frameborder="0" loading="lazy"> </iframe> diff --git a/layouts/partials/blocks/templates/video/vimeo.html b/layouts/partials/blocks/templates/video/vimeo.html index 98b53c04..e0ffc073 100644 --- a/layouts/partials/blocks/templates/video/vimeo.html +++ b/layouts/partials/blocks/templates/video/vimeo.html @@ -2,5 +2,6 @@ class="vimeo" src="https://player.vimeo.com/video/{{ .id }}" title="{{ .title }}" + frameborder="0" loading="lazy"> </iframe> diff --git a/layouts/partials/blocks/templates/video/youtube.html b/layouts/partials/blocks/templates/video/youtube.html index 7e97544e..88e26d30 100644 --- a/layouts/partials/blocks/templates/video/youtube.html +++ b/layouts/partials/blocks/templates/video/youtube.html @@ -2,5 +2,6 @@ class="youtube" src="https://www.youtube.com/embed/{{ .id }}" title="{{ .title }}" + frameborder="0" loading="lazy"> </iframe> -- GitLab