mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
20 lines
414 B
JavaScript
20 lines
414 B
JavaScript
export default function ( page ) {
|
|
|
|
const {
|
|
videoId
|
|
} = page
|
|
|
|
// Setup inline lazysizes
|
|
// this.usingComponent( 'node_modules/lazysizes/lazysizes.min.js' )
|
|
|
|
// console.log('video', video)
|
|
|
|
return /* html */`
|
|
<amp-youtube
|
|
data-videoid="${ videoId }"
|
|
layout="responsive"
|
|
width="480"
|
|
height="270"
|
|
></amp-youtube>
|
|
`
|
|
}
|