Skip to content
Snippets Groups Projects
responsive-videos.vtl 421 B
Newer Older
Brad's avatar
Brad committed
#if(!$UtilMethods.isSet($videoWidth))
	#set($videoWidth = 560)
#end
#if(!$UtilMethods.isSet($videoHeight))
	#set($videoHeight = 315)
#end

<section class="video">
	<div class="video-frame">
		<iframe width="${videoWidth}" height="${videoHeight}" src="${youTubeEmbedUrl}" frameborder="0" allowfullscreen></iframe>
	</div>
	#if(!$UtilMethods.isSet($videoCaption))
		<p class="vid-caption">$videoCaption</p>
	#end
</section>