Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

⚡ : add lazy loading to youtube video iframe

+1 -1
+1 -1
layouts/partials/talks/event.html
··· 5 5 <embed src="{{ .slides }}" type="application/pdf" width="100%" height="500px"> 6 6 7 7 <h2>Video</h2> 8 - <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/{{ .youtube }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> 8 + <iframe loading="lazy" width="560" height="315" src="https://www.youtube-nocookie.com/embed/{{ .youtube }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> 9 9 {{ end }} 10 10 {{ end }} 11 11