shithub: hugo

Download patch

ref: 4424288d9bbe54011685189a3600f7d876375558
parent: cc3f52b9c1c942047c47bffd2080af03ecc38403
author: digitalcraftsman <[email protected]>
date: Fri Nov 20 13:31:37 EST 2015

Add shortcode for youtube

--- a/tpl/template_embedded.go
+++ b/tpl/template_embedded.go
@@ -42,6 +42,7 @@
 </figure>
 <!-- image -->`)
 	t.AddInternalShortcode("speakerdeck.html", "<script async class='speakerdeck-embed' data-id='{{ index .Params 0 }}' data-ratio='1.33333333333333' src='https://speakerdeck.com/assets/embed.js'></script>")
+	t.AddInternalShortcode("youtube.html", `<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"><iframe class="youtube-player" type="text/html" src="https://www.youtube.com/embed/{{ index .Params 0 }}" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" allowfullscreen frameborder="0"></iframe></div>`)
 }
 
 func (t *GoHTMLTemplate) EmbedTemplates() {