Source code of my website
1
fork

Configure Feed

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

๐Ÿ› : do not show youtube if video is not available

+1 -5
+1 -5
layouts/partials/talks/event.html
··· 4 4 <h2>Slides </h2> 5 5 <embed src="{{ .slides }}" type="application/pdf" width="100%" height="500px"> 6 6 7 + {{ if .youtube }} 7 8 <h2>Video</h2> 8 9 <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 10 {{ end }} 10 11 {{ end }} 11 - 12 - {{ if (.Params.slides) }} 13 - <h1>Slides </h2> 14 - <embed src="{{ .Params.slides }}" type="application/pdf" width="100%" height="500px"> 15 - 16 12 {{ end }}