Files
rdvspeakers-theme-hugo/layouts/shortcodes/youtube-section.html
Horacio Gonzalez 5a3f6a3161 Initial commit
2020-10-14 14:21:46 +02:00

16 lines
492 B
HTML

{{ $_hugo_config := `{ "version": 1 }` }}
<section class="youtube-section {{ .Get "class" }}">
<div class="inner">
<h2>
{{ .Get "title" }}
</h2>
<div class="youtube-player" style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="//www.youtube.com/embed/{{ .Get "link" }}"
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen
title="YouTube Video"></iframe>
</div>
</div>
</section>