Move all files to 2017/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:17 +01:00
parent ac7370f67f
commit 2875863330
15717 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{#
/**
* @file
* Theme implementation for webform help video using YouTube.
*
* Available variables
* - youtube_id: YouTube video id.
*
* @ingroup themeable
*/
#}
{{ attach_library('webform/webform.help') }}
<div class="webform-help-video-youtube">
<div class="webform-help-video-youtube--container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/{{ youtube_id }}?rel=0&modestbranding=1{{ autoplay ? '&autoplay=1' : '' }}"{{ autoplay ? 'allow="autoplay"' : '' }} frameborder="0" allowfullscreen></iframe>
</div>
</div>