14 lines
520 B
JavaScript
14 lines
520 B
JavaScript
/* Sourced from eleventy-excellent's youtube shortcode
|
|
* https://github.com/madrilene/eleventy-excellent/blob/main/config/shortcodes/youtube-lite/index.js
|
|
*/
|
|
const liteYoutube = (id, label) => {
|
|
return `
|
|
<div class="youtube-embed"> <lite-youtube videoid="${id}" style="background-image: url('https://i.ytimg.com/vi/${id}/hqdefault.jpg');">
|
|
<button type="button" class="lty-playbtn">
|
|
<span class="lyt-visually-hidden">${label}</span>
|
|
</button>
|
|
</lite-youtube></div>
|
|
`;
|
|
};
|
|
|
|
module.exports = liteYoutube;
|